body, html{
    margin:0;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}
button{
	border: none;
	background: transparent;
}
#preloader{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: #10161A; */
    z-index: 9999999;
}
ul, ol{
    list-style: none;
    padding:0;
    margin:0;
}
input:focus, button:focus, textarea:focus,select:focus{
    outline: 0;
    box-shadow: none;
}
a,a:hover,a:focus{
    text-decoration: none;
}
img{
    max-width: 100%;
}
.social img{
    transition: all ease .2s;
    height: 18px;
}
.social img:hover{
    transform: scale(1.272);
}
.text-right{
    text-align: right;
}
.text-left{
    text-align: left;
}
.font-italic{
    font-style: italic !important;
}
body{
    background: #10161A;
}
.nav_section{
    padding: 1.5rem 2rem;
}
.nav_section.dark{
    background: #0B1012;
}
.nav_section .navbar{
    background: transparent !important;
    padding: 0;
}
.navbar-brand img{
    width: 8.25rem;
}
.logo{
    font-weight: 700;
    font-style: italic;
    text-decoration: none;
    color: #fff;
    font-size: 1.8rem;
}
.logo span{
    color: #61b8fe;
}
.container-fluid{
    padding: 0 1.7rem;
}
.navbar-light .navbar-nav .nav-link{
    color: #a3a3a3;
    text-transform: uppercase;
    padding: .6rem 1.5rem;
    font-weight: 500;
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -ms-transition: all ease .2s;
    -o-transition: all ease .2s;
}
.navbar-light .navbar-nav .nav-link:focus{
    color: #fff !important;
}
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item:focus .nav-link{
    color: #fff;
}
.navbar-light .navbar-nav .nav-link.active{
    color: #61b8fe;
}
.navbar-light .navbar-nav .nav-link.account{
    display: flex;
    align-items: center;
}
.navbar-light .navbar-nav .nav-link.account span{
    border: solid #a3a3a3;
    border-radius: 0.5px;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    position: absolute;
    transition: all 0.4s;
    right: 0;
    margin-right: 0.5rem;
    margin-top: -0.3rem;
}
.navbar-light .navbar-nav .nav-item:hover .nav-link.account span{
    transform: rotate(225deg);
    border-color: #fff;
    margin-top: 0.2rem;
}
.has-submenu{
    position: relative;
}
li.has-submenu:hover .submenu,
li.has-submenu:focus .submenu{
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 0 !important;
}
.submenu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    padding: 10px;
    list-style: none;
    min-width: 180px;
    visibility: hidden;
    opacity: 0;
    margin-top: 10px;
    transition: all 0.2s ease;
    background-color: rgb(16 22 26 / 50%);
    display: block !important;
    font-size: 0.825rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 0.375rem;
    box-shadow: 0 0 0 0px #fff, 0 0 0 1px rgb(255 255 255 / .05), 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
}
.submenu li:hover {
    box-shadow: inset 0 1px #e3e5ea0d;
    background: hsl(222deg 6% 30%/25%)!important;
    border-radius: 0.375rem;
    cursor: pointer;
}
.submenu li:hover a {
    color: #fff !important;
}
.navbar-light .navbar-n {
    background-color: transparent;
    color: #61b8fe;
}
.navbar-light .navbar-nav .nav-item ul {
    display: flex;
    min-height: 100%;
    align-items: center;
}
.navbar-light .navbar-nav .nav-item ul li{
    margin-left: 1.25rem;
}
.btn_green{
    background-color: #61b8fe;
    border: 0;
    color: #10161A;
    display: inline-block;
    position: relative;
    font-size: .875rem;
    text-transform: uppercase;
    padding: .75rem 3.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -ms-transition: all ease .2s;
    -o-transition: all ease .2s;
}
.btn_green:hover{
    background-color: #018cfe;
    color: #10161A;
}
.btn_green:after{
    content: "";
    position: absolute;
    border: 6px solid #61b8fe;
    border-radius: 5px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    transition: all ease .2s;
}
.btn_green:hover:after{
    border: 6px solid #018cfe;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
}

.btn_disabled{
    background-color: #2a333f;
    border: 0;
    color: #88909b;
    display: inline-block;
    position: relative;
    font-size: .875rem;
    text-transform: uppercase;
    padding: .75rem 3.5rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: default;
    transition: all ease .4s;
    -webkit-transition: all ease .4s;
    -moz-transition: all ease .4s;
    -ms-transition: all ease .4s;
    -o-transition: all ease .4s;
}
.btn_white{
    background-color: #10161A;
    border: 0;
    color: #fff !important;
    display: inline-block;
    position: relative;
    font-size: .875rem;
    text-transform: uppercase;
    padding: .75rem 3.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all ease .4s;
    -webkit-transition: all ease .4s;
    -moz-transition: all ease .4s;
    -ms-transition: all ease .4s;
    -o-transition: all ease .4s;
}
.btn_white:hover{
    /*background-color: white;
    color: #10161A;*/
}
.btn_white:after{
    content: "";
    position: absolute;
    border: 2px solid #fff;
    border-radius: 5px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    transition: all ease .2s;
}
.btn_white:hover:after{
    border: 2px solid #fff;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
}
.btn_green2{
    background-color: #10161A;
    border: 0;
    color: #61b8fe;
    border: 1px solid #61b8fe;
    display: inline-block;
    font-size: .875rem;
    text-transform: uppercase;
    padding: .75rem 3.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all ease .4s;
    -webkit-transition: all ease .4s;
    -moz-transition: all ease .4s;
    -ms-transition: all ease .4s;
    -o-transition: all ease .4s;
}
.btn_green2:hover,
.btn_green2:focus{
    background-color: #61b8fe;
    color: #10161A;
}
.large{
    font-size: 1.075rem;
    padding: 0 45px;
    line-height: 50px;
}
.section.page{
    padding: 75px 0;
}

.faq-title {
    color: #a3a3a3 !important;
    transition: all .2s ease;
}
.faq-title:hover {
    color: #fff !important;
}
a[aria-expanded="true"] .faq-title {
    color: #61b8fe !important;
}
.star {
    width: 30px;
    margin-right: 7px;
    margin-bottom: 7px;
    filter: grayscale(0.8) brightness(0.35) hue-rotate(163deg);
    cursor: pointer;
}
.star.active {
    filter: none;
}

/* Checkout Section */

.checkout-progress-section .all-step-progress {
  padding: 20px 0 50px;
  display: flex;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.checkout-progress-section .all-step-progress .step {
  flex-grow: 1;
  position: relative;
  z-index: 0;
}
.checkout-progress-section .all-step-progress .step::after {
  content: '';
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  display: block;
  background: #303E48;
  z-index: -1;
}
.checkout-progress-section .all-step-progress .step.active:not(.current):after {
  background: #61b8fe;
}
.checkout-progress-section .all-step-progress .step:last-child {
  width: -moz-max-content;
  width: max-content;
  flex-grow: 0;
}
.checkout-progress-section .all-step-progress .step .inner {
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #303E48;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 500;
  color: #303e48;
  background: #10161A;
}
.checkout-progress-section .all-step-progress .step.active .inner {
  border-color: #61b8fe;
  color: #61b8fe;
}
.checkout-progress-section .all-step-progress .step.current .inner {
  border-color: #61b8fe;
  background: #61b8fe;
  color: #303e48;
}

.checkout-section .progress-step .icon {
    background: hsl(206 23% 15% / 1);
    font-size: 1.4rem;
    font-weight: bold;
    width: 2rem;
    height: 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-section .progress-step.active .icon {
    background: #61b8fe;
    color: #171F25 !important;
}

.checkout-section .progress-step .text {
    margin-left: 8px;
    font-size: 22px;
    font-weight: bold;
}

.checkout-section .progress-step.active .text {
    color: #61b8fe !important;
}

.all-step-content .step {
  display: none;
}
.all-step-content .step.active {
  display: block;
}
.all-step-content .step1-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.all-step-content .step.step1 p {
  margin: 0 0 30px;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
}
.content-inner h3 {
    text-align: center;
    font-size: 35px;
    margin: 0 0 40px;
    font-style: italic;
    color: #fff;
    font-weight: 800;
}
.content-inner .step {
    padding: 60px;
    background: #171F25;
}
.range-select {
	--inner-color: #28343C;
	padding: 40px 0 50px;
	display: flex;
	width: 100%;
}
.rs-container {
    width: 100%;
}
.rs-container .rs-pointer{
    cursor: grab;
}
.rs-container .rs-scale span ins {
    margin: 20px 0 0;
    height: 50px;
    width: 50px;
    background: var(--inner-color);
    color: #10161A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s ease;
    font-size: 15px;
    font-weight: 700;
}
.rs-container .rs-selected {
  background: #61b8fe !important;
  border: none;
}
.rs-container .rs-scale span::before {
  height: 16px;
  width: 16px;
  border: 3px solid var(--inner-color);
  border-radius: 50%;
  background: #171F25;
  top: -6px;
  left: -8px;
  transition-delay: 0.3s;
}
.rs-container .rs-bg, .rs-container .rs-selected {
  border: none;
  background: var(--inner-color);
}
.rs-container .rs-pointer {
  top: -1px;
  height: 16px;
  width: 16px;
  background: #61b8fe !important;
  border: none !important;
  border-radius: 50%;
}
.rs-container .rs-pointer::before,
.rs-container .rs-pointer::after {
  display: none !important;
}
.rs-container .rs-bg, .rs-container .rs-selected {
  height: 3px;
}

/* Login section */

.single-input .input {
    min-height: 50px;
    padding: 0 20px;
    color: #b6bec5;
    width: 100%;
    border: 2px solid #2F3D46;
    background: transparent;
    transition: border-color .3s ease;
}
.input:focus{
    border: 2px solid #b6bec5;
}
.single-input .input.error {
    border: 2px solid rgb(249 98 98 / 60%);
}
.single-input .input-outer {
    width: 100%;
}
.single-input {
    width: 100%;
    margin-bottom: 15px;
}
.input:-webkit-autofill {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
}
.sign-box .bottom-links {
    margin: 50px 0 0;
    display: flex;
    justify-content: space-between;
}
.sign-box p,
.sign-box p a {
    font-size: 16px;
    color: #b6bec5;
    margin: 0;
}
.underline {
    text-decoration: underline !important;
}
.single-input .error-message {
    color: rgb(249 98 98 / 60%);
    font-size: 16px;
    margin: 7px 0 0;
    display: block;
}
.sign-box .tab-nav {
    margin: 0 0 50px;
}
.sign-box .tab-nav ul {
    padding: 0 0 10px;
    display: flex;
    border-bottom: 1px solid #303E48;
}
.sign-box .tab-nav ul li:first-child{
    margin-right: 40px;
}
.sign-box .tab-nav ul li a {
    font-size: 21px;
    font-style: italic;
    font-family: var(--font2);
    position: relative;
    transition: 0.3s;
}
.sign-box .tab-nav ul li a i {
    margin-right: 5px;
    font-size: 25px;
}
.sign-box {
    width: 100%;
    max-width: 730px;
    margin: 0 auto;
}
.sign-box .tab-nav ul li a {
    color: #fff;
}
.sign-box .tab-nav ul li a.active {
    color: #61b8fe;
}
.sign-box .tab-nav ul li a:after {
    content: '';
    height: 3px;
    width: 100%;
    background: #61b8fe;
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    opacity: 0;
    transition: 0.3s;
}
.sign-box .tab-nav ul li a.active:after {
    opacity: 1;
}
.single-input .check-label {
  display: flex;
  margin-right: 30px;
  align-items: center;
}
.single-input .check-label span {
  margin-left: 13px;
}
.single-input .check-label-outer {
  display: flex;
}
.checkbox-model::before {
    content: '';
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #303E48;
    background: #1D272E;
    border-radius: inherit;
}
.checkbox-model {
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
}
.checkbox-model::after {
    content: '\f00c';
    height: 100%;
    font-family: "Font Awesome 5 Pro";
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #303E48;
    background: #1D272E;
    border-radius: inherit;
    opacity: 0;
    transition: 0.1s;
}
.checkbox-model:checked::after {
    opacity: 1;
}

.radio-model {
    height: 26px;
    width: 26px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
}
.radio-model::before {
    content: '';
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #303E48;
    background: #1D272E;
    border-radius: inherit;
}
.radio-model::after {
    content: '';
    height: 55%;
    width: 55%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #61b8fe;
    border-radius: inherit;
    opacity: 0;
    transition: 0.3s;
}
.radio-model:checked::after {
    opacity: 1;
}

/* Payment Section */

.sign-box .details-table td {
  padding: 15px 0 13px;
  font-size: 20px;
  color: #97a1a9;
  border-bottom: 2px solid #303E48;
}
.sign-box .details-table td:last-child {
  text-align: right;
}
.sign-box .details-table tfoot td {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}


.coupon-enter  {
  margin: 40px 0 0;
}
.coupon-button  {

}
.coupon-field-opened .coupon-button {
  display: none;
}
.coupon-button img  {height: 28px;}
.coupon-enter-field  {
  display: flex;
  align-items: stretch;
}
.coupon-field-opened .coupon-enter-field {
  display: flex;
}
.coupon-enter-field .single-input  {
  margin: 0;
}
.coupon-enter-field .single-input .input {
  min-height: 55px;
}
.coupon-enter-field .button  {
    margin-left: 15px;
    flex-shrink: 0;
    min-width: 5rem;
    font-size: 16.2px;
    display: inline-flex;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px 25px;
}
input.quantity::-webkit-outer-spin-button,
input.quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
button[aria-label='Decrement'], button[aria-label='Increment'] {
    color: white;
}
button[aria-label='Decrement']:disabled, button[aria-label='Increment']:disabled {
    color: rgba(255,255,255,0.2);
}

.add-on-selector-option:hover{
    cursor: pointer;
}

.add-on-selector-option:has(input:checked) {
    box-shadow: 0 0 0 2px rgb(89 168 232 / .9) !important;
}

.payment-method-select {
  margin: 40px 0 15px !important;
}
.payment-method-select-inner{
  display: flex;
  flex-direction: column;
}
.payment-method-select-inner label {
  position: relative;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  background: hsl(205.71deg 23.33% 14%);
  border: 1px solid hsl(205.71deg 23.33% 14%);
  padding: 12px;
  transition: all .15s ease;
  align-items: center;
  flex-wrap: wrap;
}
.payment-method-select-inner label:has(input:checked) {
  background: hsl(205.71deg 23.33% 18%);
  border: 1px solid hsl(205.71deg 23.33% 30%);
}
.payment-method-select-inner label:hover {
  border: 1px solid hsl(205.71deg 23.33% 40%) !important;
}
.payment-method-select-inner input {
  margin-left: 5px;
  accent-color: #FED789;
}
.payment-method-select label .payment-icon {
    height: 2.1rem;
    margin: 2px 0 2px 4px;
    border-radius: 6px;
}
.payment-method-divider {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid hsl(205.71deg 23.33% 30%);
  line-height: 0.0em;
  margin: 40px 0 40px;
  transition: all .2s ease;
}
.payment-method-divider span {
  background:#171f25;
  padding:0 10px;
  color: #ddd;
  font-weight: lighter;
  font-size: 1.1rem;
}
.single-input label {
    font-size: 20px;
    color: #97a1a9;
}
.single-input .title-label {
    width: 100%;
    margin: 0 0 10px;
}
.payment-review-box .payment-short {
    margin: 60px auto 80px;
    padding: 0 0 10px;
    max-width: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2C3942;
}
.payment-review-box .payment-short img {
    width: 40px;
}
.payment-review-box .payment-short h3 {
    font-size: 17px;
    margin: 0;
    font-weight: 500;
}
.payment-review-box .button-container {
    display: flex;
    justify-content: center;
}
.payment-review-box .button-container button {

}
.complete-payment-box h3 {
    margin: 0px 0 20px !important;
}
.complete-payment-box h4 {
    text-align: center;
    font-size: 20px;
    margin: 0 0 30px;
    font-style: italic;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
}
.complete-payment-box h5 {
    font-size: 20px;
    margin: 0 0 20px;
    color: #fff;
    font-weight: 800;
}
.complete-payment-box ol{
    color: #fff;
    list-style: decimal;
    list-style-position: inside;
    margin-bottom: 20px;
    counter-reset: item;
}
.complete-payment-box ol li {
    display: block;
}
.complete-payment-box ol li::before{
  content: counter(item) ". ";
  counter-increment: item;
  color: #818990;
}
.complete-payment-box p {
    margin: 0 0 20px;
    font-size: 13.4px;
    line-height: 1.4;
    color: #fff;
}
.complete-payment-box .dim-color {
    color: #818990;
    display: flex;
    white-space: break-spaces;
}
.complete-payment-box .head-part {
    padding: 0 0 20px;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 2px solid #2F3D47;
}
.complete-payment-box .head-part .big-check-img {
    margin: 0 0 20px;
    width: 5rem;
}
.small-check-img {
    height: 15px;
    width: 15px;
    margin-right: 5px;
}
.complete-payment-box .dim-color span:first-child{
    margin-right: 5px;
}
.complete-payment-box .bottom-part {
    border-top: 2px solid #2F3D47;
    padding: 35px 0 0;
    margin: 50px 0 0;
}
button.place-order{
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    height: 44px;
    line-height: normal;
}

table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.sign-box p {
  font-size: 16px;
  color: #97a1a9;
}
.sign-box .bottom-links  {
  margin: 50px 0 0;
  display: flex;
  justify-content: space-between;
}
.default-button {
    font-size: 16.2px;
    min-height: 56px;
    padding: 5px 25px;
    min-width: 200px;
    background: #61b8fe;
    color: #fff;
    display: inline-flex;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #10161A;
    font-weight: 500;
}

/* small-dots */
.simple-slider ~ .rs-container .rs-scale span:first-child {
  opacity: 0;
}
.simple-slider[value="1"] ~ .rs-container .rs-scale span:nth-child(1)::before {
  background: #61b8fe;
  border-color: #61b8fe;
    transition-delay: 0.0s;
}
.simple-slider[value="2"] ~ .rs-container .rs-scale span:nth-child(1)::before,
.simple-slider[value="2"] ~ .rs-container .rs-scale span:nth-child(2)::before {
  background: #61b8fe;
  border-color: #61b8fe;
    transition-delay: 0.0s;
}
.simple-slider[value="3"] ~ .rs-container .rs-scale span:nth-child(1)::before,
.simple-slider[value="3"] ~ .rs-container .rs-scale span:nth-child(2)::before,
.simple-slider[value="3"] ~ .rs-container .rs-scale span:nth-child(3)::before {
  background: #61b8fe;
  border-color: #61b8fe;
    transition-delay: 0.0s;
}
.simple-slider[value="4"] ~ .rs-container .rs-scale span:nth-child(1)::before,
.simple-slider[value="4"] ~ .rs-container .rs-scale span:nth-child(2)::before,
.simple-slider[value="4"] ~ .rs-container .rs-scale span:nth-child(3)::before,
.simple-slider[value="4"] ~ .rs-container .rs-scale span:nth-child(4)::before {
  background: #61b8fe;
  border-color: #61b8fe;
    transition-delay: 0.0s;
}
.simple-slider[value="5"] ~ .rs-container .rs-scale span:nth-child(1)::before,
.simple-slider[value="5"] ~ .rs-container .rs-scale span:nth-child(2)::before,
.simple-slider[value="5"] ~ .rs-container .rs-scale span:nth-child(3)::before,
.simple-slider[value="5"] ~ .rs-container .rs-scale span:nth-child(4)::before,
.simple-slider[value="5"] ~ .rs-container .rs-scale span:nth-child(5)::before {
  background: #61b8fe;
  border-color: #61b8fe;
    transition-delay: 0.0s;
}


.simple-slider[value="1"] ~ .rs-container .rs-scale span:nth-child(2) ins {
  background: #61b8fe;
}

.simple-slider[value="2"] ~ .rs-container .rs-scale span:nth-child(2) ins {
    border: 1px solid #61b8fe;
    color: #61b8fe;
}
.simple-slider[value="2"] ~ .rs-container .rs-scale span:nth-child(3) ins {
  background: #61b8fe;
}
.simple-slider[value="3"] ~ .rs-container .rs-scale span:nth-child(2) ins {
    border: 1px solid #61b8fe;
    color: #61b8fe;
}
.simple-slider[value="3"] ~ .rs-container .rs-scale span:nth-child(3) ins {
    border: 1px solid #61b8fe;
    color: #61b8fe;
}
.simple-slider[value="3"] ~ .rs-container .rs-scale span:nth-child(4) ins {
  background: #61b8fe;
}

.simple-slider[value="4"] ~ .rs-container .rs-scale span:nth-child(2) ins {
    border: 1px solid #61b8fe;
    color: #61b8fe;
}
.simple-slider[value="4"] ~ .rs-container .rs-scale span:nth-child(3) ins {
    border: 1px solid #61b8fe;
    color: #61b8fe;
}
.simple-slider[value="4"] ~ .rs-container .rs-scale span:nth-child(4) ins {
    border: 1px solid #61b8fe;
    color: #61b8fe;
}
.simple-slider[value="4"] ~ .rs-container .rs-scale span:nth-child(5) ins {
  background: #61b8fe;
}

.simple-slider[value="5"] ~ .rs-container .rs-scale span:nth-child(2) ins {
    border: 1px solid #61b8fe;
    color: #61b8fe;
}
.simple-slider[value="5"] ~ .rs-container .rs-scale span:nth-child(3) ins {
    border: 1px solid #61b8fe;
    color: #61b8fe;
}
.simple-slider[value="5"] ~ .rs-container .rs-scale span:nth-child(4) ins {
    border: 1px solid #61b8fe;
    color: #61b8fe;
}
.simple-slider[value="5"] ~ .rs-container .rs-scale span:nth-child(5) ins {
    border: 1px solid #61b8fe;
    color: #61b8fe;
}
.simple-slider[value="5"] ~ .rs-container .rs-scale span:nth-child(6) ins {
  background: #61b8fe;
}







.range-select .single-step {
  --inner-color: #28343C;
    width: 20%;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.range-select .single-step.active {
  --inner-color: #61b8fe;
}
.range-select .single-step::before {
  content: '';
  height: 3px;
  width: 100%;
  background: var(--inner-color);
  position: absolute;
  top: 0;
  right: 11px;
  display: block;
}
.range-select .single-step::after {
  content: '';
  height: 16px;
  width: 16px;
  border: 3px solid var(--inner-color);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 11px;
  transform: translate(0,-50%);
  background: #171F25;
}
.range-select .single-step.active::after {
  background: #61b8fe;
}
.range-select .single-step .inner {
  margin: 20px 0 0;
  height: 34px;
  width: 34px;
  background: var(--inner-color);
  color: #10161A;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.alert.alert-info{
    color: #97a1a9;
    background: rgba(255,255,255,0.05);
    border-color: transparent;
    transition: all .2s ease;
    opacity: 1;
    visibility: visible !important;
    overflow: hidden;
    max-height: 100%;
    box-sizing: border-box !important;
}
.alert.alert-info.invisible{
    height: 0;
    padding-top: 0;
    border: 0;
    padding-bottom: 0;
    border-color: transparent;
}


.title {
    text-align: center;
    color: #61b8fe;
    font-size: 3.4rem;
    font-style: italic;
    letter-spacing: -1px;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-family: system-ui;
}
.header {
    padding-top: 90px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}
.header_img {
    position: absolute;
    width: 59rem;
    top: -6rem;
    left: 50%;
    z-index: -1;
    opacity: 4%;
    filter: invert(1);
}
.section.page .header_img {
    left: calc(50% - 4rem);
    width: 45rem;
    top: 4rem;
}
.card{
    background: #171F25;
}
.card-body{
    background: #171F25 !important;
    color: #fff !important;
    border-radius: 0.5rem;
    padding: 1.5rem;
}
.text-primary{
    color: #61b8fe !important;
}
a.text-primary:hover{
    color: #018cfe !important;
}
.header .header_img1 {
    position: absolute;
    width: 45rem;
    top: 2.3rem;
    z-index: -1;
    left: calc(50% + 6rem);
}
.header h1{
    font-family: system-ui;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}
.header h1 span{
    background: linear-gradient(to top left,#61b8fe, #4daffe, #018cfe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 0px 20px #61b8fe70;
}
.header p{
    color: #adaeb5;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}
.header .btn_white{
    margin-left: 1rem;
}
.header .container{
    max-width: 1000px;
}
.sec{
    padding-top: 6rem;
    position: relative;
}
.sec .container{
    position: relative;
    z-index: 2;
}
.sec h3{
   font-family: 'Poppins', sans-serif;
   font-weight: 700;
   text-transform: uppercase;
   font-style: italic;
   color: white;
   font-size: 3rem;
}
.sec h3 span{
    color: #61b8fe;
    text-shadow: 0px 0px 20px #61b8fe70;
}
.sec p,
.faq_section li{
    color: #adaeb5;
    font-size: 1.125rem;
}
.sec .vertical_flexer{
    display: flex;
    align-items: center;
    min-height: 100%;
}
.sec .vertical_flexer > span{
    width: 100%;
}
.order{
    order: 2;
}
.sale_section{
    position: relative;
}
.sale_section .grey_box{
    background: #1E282F;
    cursor: pointer;
    padding: 1.75rem 3rem;
    position: relative;
    width: 100%;
    display: inline-block;
    border-radius: 5px;
    transition: all .2s ease;
}
.sale_section .grey_box:hover{
    background: #222d36;
}
.sale_section .grey_box .flexer{
    display: flex;
    align-items: center;
    min-height: 100%;
    width: 100%;
}
.sale_section .grey_box .flexer span{
    width: 100%;
    text-align: center;
}
.sale_section .grey_box h3{
}
.sale_section .grey_box .price_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    flex-direction: column;
}
.sale_section .grey_box .price_flex .price{
    color: #FFFFFF;
    font-size: 2.6rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
}
.sale_section .grey_box .price_flex .price.off{
    font-style: italic;
}
.sale_section .grey_box .price_flex .price.off span{
    color: #61b8fe;
}
.sale_section .grey_box .price_flex strike{
    color: #6B7881;
    font-size: 1.25rem;
    line-height: 1;
}
.sale_section .grey_box .price_flex .price.now{
    font-weight: 500;
    font-size: 2.75rem;
    margin-left: 10px;
}
.sale_section .grey_box h5{
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 400;
}
.sale_section .grey_box h5 span{
    font-weight: 500;
    display: block;
    font-size: 1.9rem;
    line-height: 1;
}
.feature_section .container{
    max-width: 1200px;
}
.feature_section .row{
    justify-content: space-between;
}
.feature_section .img_box{
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    width: 62px;
}
.feature_section .img_box img {
    transition: all .4s ease;
}
.feature_section .img_box img.anim-hide {
    transform: translateY(100%);
    opacity: 0;
}
.feature_section h3{
    font-size: 1.75rem !important;
    margin-bottom: 1.5rem;
}
.feature_section p{
    margin-bottom: 0;
}
.feature_section .col-12.col-md-4{
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
}
.player_section{
    position: relative;
}
.player_section .slick-track > div{
    padding: 0 1rem;
}
.player_section .player_slider .player_box{
    width: 100%;
    position: relative;
}
.player_section .player_slider .player_box img.w-100{
    width: 100%;
}
.player_section .player_slider .player_box .text_box{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1E282F;
    padding: .75rem 1.5rem;
    text-align: center;
}
.player_section .player_slider .player_box .text_box .text{
    color: #4D5A63;
    font-size: .875rem;
}
.player_section .player_slider .player_box .text_box .logo{
    display: block;
    margin: auto;
    margin-top: .35rem;
}
.player_section .player_slider .player_box .text_box .flexer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}
.player_section .player_slider .player_box .text_box .flexer .text{
    margin-top: .5rem;
}
.player_section .player_slider .player_box .text_box .flexer .price{
    display: flex;
    align-items: center;
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 700;
}
.player_section .player_slider .player_box .text_box .flexer .price img{
    width: 1.5rem;
    margin-left: .5rem;
}
.player_section .slick-arrow{
    border: 0;
    padding: 0;
    background: transparent;
    width: 1rem;
    top: calc(45% - .5rem);
    position: absolute;
    box-shadow: none;
    opacity: 1;
}
.player_section .slick-arrow.prev-arrow{
    left: -2rem;
}
.player_section .slick-arrow.next-arrow{
    right: -2rem;
}
.player_section .slick-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
}
.player_section .slick-dots li button{
    background: #1E282F;
    border: 0;
    font-size: 0;
    padding: 0;
    width: .625rem;
    height: .625rem;
    border-radius: 50%;
    margin: 0 .25rem;
    transition: all ease .4s;
    -webkit-transition: all ease .4s;
    -moz-transition: all ease .4s;
    -ms-transition: all ease .4s;
    -o-transition: all ease .4s;
}
.player_section .slick-dots li.slick-active button{
    background: #61b8fe;
}
.tool_section{
    position: relative;
    padding-top: 8rem;
}
.tool_section img{
    margin-top: 1rem;
    width: 95%;
}
.tool_section h3{
    margin-bottom: 2rem;
}
.tool_section .btn_green2{
    padding: .65rem 2rem;
    border: 2px solid #61b8fe;
    margin-top: .75rem;
}
.tool_section .btn_green2:hover,
.tool_section .btn_green2:focus{
    border: 2px solid #61b8fe;
}
.make_section{
    position: relative;
    padding: 7.5rem 0;
    background: #131A1F;
}
.make_section .sec_img{
    width: 100%;
}
.make_section .vertical_flexer{
    padding-left: 2.5rem;
}
.make_section .shape{
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0;
    filter: grayscale(1);
    height: 90%;
    width: auto;
}
.best_section{
    background: #131A1F;
    margin-top: 5rem;
    padding: 0;
}
.best_section img{
    width: 90%;
    margin-top: 1.5rem;
}
.best_section h3{
    margin-bottom: 1.75rem;
}
.best_section p{
    color: #adaeb5;
}
.profit_section{
    padding: 5rem 0;
}
.profit_section img{
    max-width: 180%;
    margin-bottom: -3rem;
}
.profit_section .vertical_flexer{
    padding-left: 2.5rem;
}
.show_section{
    background: #131A1F;
    padding: 0;
    padding-bottom: 2rem;
}
.show_section img{
    margin-top: -6rem;
    width: 120%;
    max-width: 120%;
}
.show_section h3{
    margin-bottom: 1.75rem;
}
.trade_section{
    padding-top: 10rem;
    position: relative;
    padding-bottom: 10rem;
}
.trade_section .sec_img{
    width: 100%;
    margin-bottom: -5rem;
}
.trade_section .shape{
    position: absolute;
    right: 0;
    top: 0;
    width: 20rem;
}
.key_section{
    position: relative;
}
.key_section h3{
    margin-bottom: 1.75rem;
}
.key_section p{
    margin-bottom: 6rem;
}
.key_section .key_flex{
    display: flex;
    align-items: flex-start;
    margin-bottom: 6rem;
}
.key_section .key_flex img{
    width: 4.5rem;
    transition: all .5s ease;
}
.key_section .key_flex img.anim-hide{
    opacity: 0;
    transform: translateX(100%);
}
.key_section .key_flex .text_box{
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 1.25rem;
}
.key_section .key_flex .text_box h4{
    color: #FFFFFF;
    font-size: 1.75rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: .35rem;
    width: -moz-fit-content;
    width: fit-content;
}
.work_section{
    background: #131A1F;
    padding-bottom: 3rem;
}
.work_section h3{
    margin-bottom: 1rem;
}
.work_section img.w-100{
    box-shadow: 0 0 20px 5px #00000070;
}
.work_section .carousel-inner{
    padding: 3rem 0;
}
.work_section h5{
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.work_section .carousel-control-prev{
    position: absolute;
    left: 0;
    top: 3rem;
    width: 3.5rem;
    bottom: initial;
    z-index: 99;
}
.work_section .carousel-control-next{
    position: absolute;
    left: 9rem;
    top: 3rem;
    width: 3.5rem;
    bottom: initial;
    opacity: 1;
    z-index: 99;
}
.work_section .carousel-indicators{
    margin: initial;
    display: flex;
    width: 12.5rem;
    position: absolute;
    left: 0rem;
    top: 3.5rem;
    bottom: initial;
    z-index: 1;
}
.work_section .carousel-indicators:after{
    content: '/5';
    color: #6D7072;
    font-size: 1.5rem;
}
.work_section .carousel-indicators button{
    text-indent: initial;
    width: auto;
    padding: 0;
    margin: 0;
    height: 0;
    color: #6D7072;
    font-size: 1.5rem;
    opacity: 1;
    border: 0;
    display: none;
}
.work_section .carousel-indicators button.active{
    display: block;
}
.work_section .carousel-indicators{
    left: calc(25% - 6.5rem);
}
.work_section .carousel-control-prev {
    left: calc(25% - 6rem);
}
.work_section .carousel-control-next{
    left: calc(25% - -2rem);
}
.support_section{
    padding-bottom: 6rem;
}
.support_section .sec_img{
    width: 25rem;
}
.review_section{
    padding-top: 10rem;
}
.review_section .shape{
    position: absolute;
    right: 0;
    top: 0;
    width: 20rem;
}
.review_section h3{
    margin-bottom: 4rem;
}
.review_section .review_wrap{
    position: relative;
}
.review_section .review_wrap .overlay{
    position: absolute;
    left: -50vw;
    top: 80%;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, #10161A 90%);
    z-index: 2;
    width: 200vw;
}
.review_section .review_wrap .review_box{
    padding: 1.4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 100%;
    position: relative;
    background-color: rgb(28 38 44 / 40%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0.8rem;
    box-shadow: 0 0 0 0px #fff, 0 0 0 1px rgb(255 255 255 / .05), 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
}
.review_section .review_wrap .review_box h5{
    color: #c9c9c9;
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: .75rem;
}
.review_section .review_wrap .review_box p{
    font-size: 1.25rem;
    min-height: 7.5rem;
    margin-bottom: 1rem;
    color: #ddd;
}
.review_section .review_wrap .review_box .flexer{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.review_section .review_wrap .review_box div{
    color: #808385;
    font-size: 1.25rem;
}
.review_section .review_wrap .review_box img{
    width: 10rem;
}

@keyframes cycle-reviews {
    0% {
        transform: translateX(-116.66%);
    }

    to {
        transform: translateX(-283.33%);
    }
}

.faq_section{
    position: relative;
}
.faq_section h3{
    margin-bottom: 4rem;
}
.faq_section .nav-tabs{
    flex-direction: column;
    width: 40%;
    border: 0;
}
.faq_section .nav-tabs .nav-link{
    border-radius: 5px;
    border: 2px solid transparent;
    background: transparent;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    font-size: .875rem;
    padding: .75rem 1rem;
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .4s;
    -ms-transition: all ease .4s;
    -o-transition: all ease .4s;
}
.faq_section .nav-tabs .nav-link:hover,
.faq_section .nav-tabs .nav-link:focus,
.faq_section .nav-tabs .nav-link.active{
    border: 2px solid #61b8fe;
}
ul.bullet-list li{
    padding-left: 30px;
    color: #808385;
}
ul.bullet-list li:before {
    content: "";
    position: relative;
    left: -20px;
    width: 6px;
    height: 1.5em;
    margin-bottom: -1.5em;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='6' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle fill='%23D1F26D' cx='3' cy='3' r='3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    display: list-item;
    list-style-position: inside;
    text-align: right;
	filter: brightness(0) saturate(100%) invert(82%) sepia(44%) saturate(5196%) hue-rotate(180deg) brightness(101%) contrast(99%);
	-webkit-filter: brightness(0) saturate(100%) invert(82%) sepia(44%) saturate(5196%) hue-rotate(180deg) brightness(101%) contrast(99%);
}
.faq_section h5{
    color: #61b8fe;
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: .75rem;
}
.faq_section p{
    color: #adaeb5;
    margin-bottom: 0;
}
.faq_section a{
    color: #61b8fe;
}
.faq_section hr{
    background: #808486;
    height: 1px;
    opacity: 1;
    margin: 2rem 0;
    width: 100%;
}
.ready_section{
    text-align: center;
    padding: 10rem 0;
}
.ready_section .shape{
    position: absolute;
    left: 0;
    top: -5rem;
    width: 22.5rem;
    filter: grayscale(1);
}
.ready_section .ready_img {
    position: absolute;
    left: calc(50% + 20rem);
    bottom: 2rem;
    width: 27rem;
}
.ready_section h3{
    margin-bottom: 1.25rem;
}
.ready_section p{
    margin-bottom: 2rem;
}
.ready_section button{
    margin: 0 .5rem;
    padding: 0 1rem;
    min-width: 12.5rem;
}
.ready_section .btn_green2{
    color: white;
}
.ready_section .btn_green2:hover,
.ready_section .btn_green2:focus{
    color: #10161A
}
.get-started-card{
    width: 33rem;
}
.footer_top{
    padding: 5rem 0;
    background: #10161A;
    position: relative;
}
.footer_top .logo{
    display: inline-block;
    font-size: 1.5rem;
}
.footer_top .link_list{
    display: flex;
    justify-content: space-between;
}
.footer_top .col-md-5{
    padding: 0 3rem;
}
.footer_top .link_list li a{
    color: #808385;
    font-size: .875rem;
    font-weight: 600;
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -ms-transition: all ease .2s;
    -o-transition: all ease .2s;
    display: inline-block;
    text-transform: uppercase;
}
.footer_top .link_list li a:hover,
.footer_top .link_list li a:focus{
    color: #FFF;
}
.footer_top .link_list li a.active{
    color: #61b8fe;
}
.footer_top hr{
    background: #2C3337;
    opacity: 1;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}
.footer_top .cc{
    display: block;
    margin: auto;
    width: 12.5rem;
}
.footer_top .social{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.footer_top .social li:last-child{
    margin-left: 1.25rem;
}
footer{
    background: #10161A;
    text-align: center;
    color: #5F6567;
    padding: 1.5rem 0;
    font-size: .875rem;
    font-weight: 400;
    text-transform: uppercase;
    border-top: 1px solid #25262b66;
}
footer p{
    margin-bottom: .25rem;
}

:root {
  color-scheme: dark;
}

::-moz-selection {
  background: #61b8fe;
  color: #000;
}

::selection {
  background: #61b8fe;
  color: #000;
}
.carousel-control-next{
    opacity: .5 !important;
}
.carousel-control-next:hover{
    opacity: .9 !important;
}

.review_box_block{
    display:inline-block;
    text-align:right;
}

.review_section .review_wrap .review_box img.review-star{
    width: 1.6rem;
}

.avg_review_box.review_box_block {
    display: flex;
    height: 3.4rem;
    background: #1c262c;
    width: -moz-fit-content;
    width: fit-content;
    justify-content: flex-start;
    padding: 0.6rem 1rem;
    border-radius: 3rem;
    margin-bottom: 0.5rem;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
}

.avg_review_box.review_box_block img {
    margin-right: 5px;
    width: 2rem;
}

.faq-btn button{
    margin-top:  3rem;
}

.footer-payment-icons{
    text-align:center;
}

.footer-payment-icons li{
    display:inline-block;
}

.footer-payment-icons li img{
    width:2rem;
    margin:0 5px;
}

.cls-1{
    fill:#fff;
}
.cls-2{
    fill:#00b67a;
}
.cls-3{
    fill:#005128;
}



/* responsive style */

.visible-xs{
	display: none !important;
}
.hidden-xs{
	display: block !important;
}
@media(min-width: 1440px){
	.checkout-section.container{
        max-width: 920px;
    }
}
@media(max-width: 767px){
	.visible-xs{
		display: block !important;
	}
	.hidden-xs{
		display: none !important;
	}
}
@media(max-width: 1440px){
	html,body{
		font-size: 14px;
	}
	.checkout-section.container{
        max-width: 920px;
    }
}
@media(max-width: 1366px){
	html,body{
		font-size: 13px;
	}
	.checkout-section.container{
        max-width: 880px;
    }
    .all-step-progress .step .inner {
        height: 40px;
        width: 40px;
        font-size: 18px;
    }
    .all-step-progress {
        padding: 50px 0 40px;
        display: flex;
        max-width: 360px;
    }

    .content-inner h3 {
        font-size: 25px;
        margin: 0 0 25px;
    }

    .content-part {
        max-width: 600px;
        margin: 0 auto;
    }
    .content-inner .step {
        padding: 35px;
    }

    .range-select .single-step .inner {
        margin: 14px 0 0;
        height: 19px;
        width: 20px;
        font-size: 10px;
    }
    .range-select .single-step::before {
        height: 2px;
    }
    .range-select .single-step::after {
        border-width: 2px;
        height: 10px;
        width: 10px;
        right: 6px;
        z-index: 3;
    }
    .range-select {
        padding: 24px 0 70px;
    }


    .rs-container .rs-bg, .rs-container .rs-selected {
        height: 2px;
    }
    .rs-container .rs-pointer {
        top: 1px;
        height: 10px;
        width: 10px;
    }
    .rs-container .rs-scale span ins {
        margin: 12px 0 0;
        height: 30px;
        width: 30px;
        font-size: 10px;
    }
    .rs-container .rs-scale span::before {
        height: 10px;
        width: 10px;
        border-width: 2px;
        left: -5px;
        top: -5px;
    }
    .all-step-content .step.step1 p {
        margin: 0 0 30px;
        font-size: 25px;
    }

    .default-button {
        font-size: 14px;
        min-height: 45px;
        padding: 5px 20px;
        min-width: 150px;
    }

    .sign-box .tab-nav ul li a {
        font-size: 15px;
    }
    .sign-box .tab-nav ul li a i {
        margin-right: 5px;
        font-size: 16px;
    }
    .single-input .input {
        min-height: 45px;
        padding: 0 15px;
        font-size: 13px;
    }
    .sign-box p {
        font-size: 13px;
    }
    .sign-box p a {
        font-size: 13px;
    }
    .sign-box .bottom-links {
        margin: 25px 0 0;
    }
    .checkout-progress-section .content-inner .step {
        padding: 35px;
    }
    .checkout-progress-section .return-button {
        font-size: 13px;
        margin: 20px auto 0;
    }
    .single-input label {
        font-size: 14px;
    }
    .radio-model {
        height: 20px;
        width: 20px;
    }
    .checkbox-model {
        height: 21px;
        width: 21px;
    }

    .sign-box .details-table td {
        padding: 12px 0 10px;
        font-size: 14px;
    }
    .sign-box p {
        font-size: 13px;
    }
    .coupon-enter-field .single-input .input {
        min-height: 45px;
    }
    .payment-method-select label {
        border-radius: 10px;
    }

    .payment-review-box .payment-short img {
        width: 34px;
    }

    .payment-review-box .payment-short h3 {
        font-size: 14px;
        margin: 0;
    }

    .complete-payment-box h4 {
        font-size: 15px;
        margin: 0 0 24px;
    }

    .complete-payment-box .head-part .big-check-img {
        margin: 0 0 20px;
        width: 60px;
    }

    .complete-payment-box h5 {
        font-size: 17px;
        margin: 0 0 15px;
    }

    .complete-payment-box p {
        margin: 0 0 15px;
        font-size: 11.5px;
        line-height: 1.4;
    }
    .default-button {
        font-size: 14px;
        min-height: 45px;
        padding: 5px 20px;
        min-width: 150px;
    }
}
@media(max-width: 1280px){
	html,body{
		font-size: 13px;
	}
	.header .container{
		max-width: 900px;
	}
	.checkout-section.container{
        max-width: 800px;
    }
}
@media(max-width: 1024px){
	html,body{
		font-size: 12px;
	}
	.header .container{
		max-width: 750px;
	}
	.header .header_img1{
		top: 5rem;
		left: calc(50% + 1rem);
	}
	.ready_section .ready_img{
		bottom: 5rem;
		width: 22rem;
		left: calc(50% + 18.5rem)
	}
}
@media(max-width: 992px){
	.navbar-light .navbar-toggler {
		color: #a3a3a3;
		padding: 0;
		border: 0;
		box-shadow: none;
		font-size: 1.7rem;
    }
    .navbar-light .navbar-toggler:hover{
        color: #fff;
    }
	.header_img{
	    left: 40%;
	}
	.sale_section .container{
		max-width: 900px;
	}
	.make_section .sec_img{
		height:auto;
	}
	.review_section .review_wrap .review_box p br.hidden-xs{
		display: none !important;
	}
}
@media(max-width: 767px){
	html,body{
		font-size: 14px;
	}
	.nav_section{
	    padding: 1rem 0;
	}
	.navbar-light .navbar-toggler {
		color: #a3a3a3;
		padding: 0;
		border: 0;
		box-shadow: none;
		font-size: 1.7rem;
    }
    .navbar-light .navbar-toggler:hover{
        color: #fff;
    }
	.navbar-collapse {
    padding: 1rem;
    border-radius: 10px;
    background: #10161A;
    position: absolute;
    width: calc(100% - 2rem);
    top: 3.6rem;
    left: 0;
    margin: 0 1rem;
	}
	.navbar-light .navbar-nav .nav-link{
	    padding: 1rem 0;
	}
	.navbar-light .navbar-nav .btn_green{
	    width: 100%;
	    margin-bottom: 1rem;
	}
	.navbar-light .navbar-nav .nav-item ul{
	    justify-content: center;
	}
	.navbar-light .navbar-nav .nav-item ul li:first-child{
	    margin: 0;
	}
    .submenu{
        left: 0;
        right: auto;
        font-size: 0.95rem;
    }
    .checkout-progress-section .all-step-progress{
        max-width: 280px;
    }
    .checkout-progress-section .all-step-progress .step .inner{
        width: 47px;
        height: 47px;
    }
	.header {
	    display: block;
	    padding-top: 120px;
	    padding-bottom: 40px;
	    text-align: center;
	}
	.header .container{
		margin-top: -50px;
	}
	.nav_section{
		z-index: 1;
		position: relative;
	}
	.header_img{
	    position: absolute;
	    width: 100%;
	    margin-bottom: 0rem;
	    right: 0;
	    left: initial;
	}
    .section.page .header_img{
        width: 100%;
        left: 0;
    }
	.header .header_img1 {
		position: absolute;
		left: calc(50% - 11rem);
		width: 22rem;
		top: 1rem;
		z-index: -1;
	}
    .header h1{
	    font-size: 2.2rem;
	    margin-bottom: 1rem;
	}
	.sale_section .container{
		max-width: 540px;
	}
	.sale_section .grey_box{
	    padding: 1rem;
	    text-align: center;
	}
	.sale_section .grey_box .price_flex .price,.sale_section .grey_box .price_flex .price.now{
	    font-size: 2rem;
	}
	.sale_section .grey_box .price_flex strike{
	    font-size: 1.75rem;
	}
	.sale_section .grey_box .price_flex{
	    margin-bottom: 1.5rem;
	}
	.sec{
	    padding: 2.5rem .5rem;
	}
    .support_section{
        padding-bottom: 4rem;
    }
	.feature_section{
	    padding-top: 1rem;
	}
	.feature_section .row{
		justify-content: center;
	}
	.feature_section .col-12.col-md-4{
		text-align: center;
		margin-bottom: 2rem;
	}
	.tool_section img{
	    width: 100%;
	}
	.tool_section div,
    .support_section div,
    .trade_section div,
    .show_section div,
    .profit_section div,
    .best_section div{
		text-align: center;
	}
	.sec .img{
		text-align: center;
	}
	.sec h3{
	    font-size: 2.25rem;
	    text-align: center;
	}
    .feature_section .img_box{
        margin-left: auto;
        margin-right: auto;
    }
	.make_section .vertical_flexer,.profit_section .vertical_flexer{
	    padding-left: 0;
	    margin-top: 1.5rem;
	}
	.make_section .sec_img{
		width: 80%
	}
	.best_section img {
		width: 21rem;
		margin-bottom: 2rem;
		max-width: 100%;
		margin-top: -2rem;
	}
	.show_section img {
		margin-top: -5.2rem;
		width: 29rem;
		max-width: 100%;
	}
	.trade_section .sec_img {
		margin-bottom: 2rem;
		width: 24rem;
		max-width: 100%;
	}
    .support_section .sec_img{
        width: 20rem;
    }
    .key_section .row-parent {
        margin-left: 13%;
    }
	.key_section .key_flex {
	    margin-bottom: 3rem;
	    justify-content: start;
	}
	.key_section .key_flex .text_box h4{
	    font-size: 1.35rem;
	}
	.work_section .carousel-control-prev,
	.work_section .carousel-control-next{
	    top: 0;
	}
	.work_section h5{
		text-align: center;
	}
	.work_section .carousel-indicators{
	    top: .75rem;
	    left: calc(50% - 6.5rem);
	}
	.work_section .carousel-inner{
	    padding: 5rem 0;
	}
	/* .review_section .review_wrap .overlay{
		top: 83%;
	} */

    @keyframes cycle-reviews {
        0% {
            transform: translateX(-350%);
        }

        to {
            transform: translateX(-850%);
        }
    }

	.faq_section .nav-tabs{
	    width: 100%;
	}
	.ready_section .ready_img{
	    display: none;
	}
	.ready_section button{
	    margin: 0 .15rem;
	    min-width: 10rem;
	    margin-bottom: 2rem;
	}
    .get-started-card{
        width: 100%;
    }
	.best_section .order ~ .col-12, .show_section .order ~ .col-12, .make_section .order ~ .col-12{
		order: 2;
	}
	.footer_top {
	    text-align: center;
	    padding: 3rem 0;
	}
	.footer_top .logo{
	    margin-bottom: 1.5rem;
	}
	.footer_top .col-md-5{
	    padding-right: calc(var(--bs-gutter-x)/ 2);
	    padding-left: calc(var(--bs-gutter-x)/ 2);
	}
	.footer_top .social{
	    justify-content: center;
	    margin-top: 2rem;
	}
	.player_section .slick-arrow.prev-arrow{
	    left: 2rem;
	    z-index: 9;
	}
	.player_section .slick-arrow.next-arrow{
	    right: 2rem;
	    z-index: 9;
	}
	.profit_section img{
	    width: 22rem;
        margin-bottom: -2rem;
        margin-left: 1rem;
	}
	.footer_top .link_list{
		width: 80%;
		margin-left: 10%;
	}
	.footer_top hr{
		width: 80%;
		margin-left: 10%;
	}

	.home-page-tabs{
		display:none;
	}

	.faq-btn{
		display:block;
	}

	.faq-btn button{
		width: 100%;
		margin-top: 50px;
	}

	.sale_section .grey_box .flexer{
		display:block;
		text-align:center;
	}

	.sale_section .grey_box .price_flex{
		width:100%;
		margin-top:1.5rem;
		flex-direction: row;
    	justify-content: space-evenly;
	}
	.header .button_flexer button{
		margin:5px !important;
		width: 12rem !important;
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.review_section .review_wrap .review_box .flexer{
        flex-direction: column;
        text-align: center;
        align-items: center !important;
    }
    .review_section .review_wrap .review_box h5{
        margin-bottom: 0.5rem;
    }
    .review_section .review_wrap .review_box p {
        text-align: center;
    }
	.work_section .carousel-control-prev {
    left: calc(50% - 6rem);
}
.work_section .carousel-control-next{
	left: calc(50% - -2rem);
}
}

@media(max-width: 500px){
	.footer_top .link_list{
	width: 100%;
    margin-left: 0;
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
	}

	.footer_top .link_list li{
		margin:0 10px;
		text-align: center;
	}

	.footer_top hr{
		width:100%;
		margin-left:0;
	}

    .sign-box .tab-nav ul li:first-child {
        margin-right: 35px;
    }
}

@keyframes slide-bottom {
    0% {
        transform: translateY(50px)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes fade-anim {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}
