/*!
Theme Name: epicmining
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: epicmining
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

epicmining is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: "adelia";
  src: url("fonts/adelia.eot");
  src: url("fonts/adelia.eot?#iefix") format("embedded-opentype"),
    url("fonts/adelia.woff2") format("woff2"),
    url("fonts/adelia.woff") format("woff"),
    url("fonts/adelia.ttf") format("truetype"),
    url("fonts/adelia.svg#adeliaregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* 

font-family: "Poppins", sans-serif;
font-family: 'adelia';

*/

:root {
  --adelia: "adelia";
  --bodyFont: "Poppins", sans-serif;
  --white: #ffffff;
  --black: #000000;
  --themeGray: #3e3e3e;
  --bodyColor: #424242;
  --themeBlue: #645cff;
  --yellow: #ff9902;
  --lightGray: #a9a9cc;
  --lightGray2: #cdcdcd;
  --themeGreen60: rgba(29, 175, 124, 0.6);
  --themeGreen: #1daf7b;

  --darkBlue: #080727;
  --sec-bg: #eff2f7;
}

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */
body {
  margin: 0;
  padding: 0;
  font-family: var(--bodyFont);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-style: normal;
  color: var(--bodyColor);
  line-height: 1.5;
  background-color: #fff;
  font-weight: 400;
  font-size: 23px;
  letter-spacing: 0.02em;
}

:root {
  scroll-behavior: smooth;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  color: var(--themeGray);
  font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.h1-title {
  font-weight: 800;
  font-size: 60px;
  line-height: 1.18;
}

h2,
.h2-title {
  font-weight: 800;
  font-size: 50px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

h3,
.h3-title {
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.02em;
}

h4,
.h4-title {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h5,
.h5-title {
  font-size: 20px;
  line-height: 1.2;
}

a {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: #ecb61e;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: red;
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: transparent;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.7);
  height: 58px;
  padding: 0 16px;
  outline: none !important;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  width: 100%;
  color: #000;
  height: 158px;
  outline: none !important;
}

select {
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 0 11px;
  background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center
    transparent;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  background: #eab71e;
  color: #000000;
  height: 58px;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  padding-left: 30px;
  padding-right: 30px;

  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background: #000;
  color: #eab71e;
}

::-webkit-input-placeholder {
  opacity: 0.7;
  color: #000;
}

:-ms-input-placeholder {
  opacity: 0.7;
  color: #000;
}

::-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

:-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #bdd653;
  display: none;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

#scroll:hover {
  background: #88a725;
}

#scroll i {
  color: #fff;
  font-size: 44px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

/* navbar*/

.navbar-brand {
  padding: 0;
  margin: 0;
  max-width: 238px;
  width: 100%;
  display: inline-block;
}

.navbar-brand img {
  width: 100%;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav > li {
  margin: 0 27px;
  padding: 0;
  position: relative;
}

.navbar-nav > li:last-child {
  margin-right: 0;
}

.navbar-nav > li:first-child {
  margin-left: 0;
}

.navbar-nav > li > a {
  color: var(--themeGray);
  line-height: 1.2;
  position: relative;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.navbar-nav > li > a:after {
  content: "";
  display: none;
  width: 0;
  height: 2px;
  background: var(--themeBlue);
  /* opacity: 0; */
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:hover,
.navbar-nav > li.menu-item-has-children:hover > a {
  color: var(--themeGray);
}

.navbar-nav > li.current-menu-item > a:after,
.navbar-nav > li > a:hover:after,
.navbar-nav > li.menu-item-has-children:hover > a:after {
  width: 100%;
}

/* navbar submenu*/

.sub-menu {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  width: 140px;
  padding: 0;
}

.sub-menu > li > a {
  color: #000;
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.sub-menu > li {
  width: 100%;
  display: block;
}

.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a,
.sub-menu > li.current-menu-item > a {
  background: #eab71e;
  color: #fff;
}

.navbar-nav > li:last-child > .sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/

.sec-head {
  text-align: center;
  margin-bottom: 48px;
}

.black-title h2 {
  color: var(--black);
}

.title-line {
  padding-bottom: 19px;
  position: relative;
}

.title-line::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(30px);
  width: 80px;
  height: 1px;
  background: var(--themeGreen);
  transition: 0.8s all;
  opacity: 0;
}

.title-line.play-reveal::before,
.sec-head.play-reveal .title-line::before {
  opacity: 1;
  transition-delay: 1s;
  transform: translateX(-50%) translateY(0);
}

.sec-head .title-line > h2 {
  margin-bottom: 0 !important;
}

.our-team-outer .sec-head .title-line {
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.cmn_gap {
  padding: 100px 0;
}

.container.large {
  max-width: 100%;
}

.login_wrappr {
  padding-left: 37px;
}

.login_wrappr ul {
  padding: 0 0 0 32px;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  position: relative;
}

.login_wrappr ul::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 32px;
  background-color: #ebebeb;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.login_wrappr li {
  padding: 0 17px;
  line-height: 0;
}

.login_wrappr li:first-child {
  padding-left: 0;
}

.login_wrappr li:last-child {
  padding-right: 0;
}

.login_wrappr li a {
  color: var(--themeGray);
  line-height: 1.2;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.login_wrappr li a:hover {
  color: var(--themeBlue);
}

.login_wrappr li a.yellow_btn {
  color: var(--white);
  font-size: 16px;
}

.yellow_btn {
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--white);
  background-color: var(--yellow);
  border-radius: 4px;
  padding: 19px 39px;
  min-width: 201px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.yellow_btn::before {
  position: absolute;
  content: "";
  width: 0;
  height: 4px;
  background-color: var(--themeGreen);
  bottom: 0;
  right: 0;
  transition: 0.5s all;
}

.yellow_btn:hover {
  background-color: var(--themeBlue);
  color: var(--darkBlue);
}

.yellow_btn:hover::before {
  width: 100%;
  transform-origin: left;
  left: 0;
  right: inherit;
}

.main-head {
  padding: 11px 0;
  z-index: 99;
  position: relative;
  /* background-color: var(--white); */
}

.main-head.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  animation: slide-down 0.7s;
  -ms-animation: slide-down 0.7s;
  -webkit-animation: slide-down 0.7s;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

.main-head::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: -1;
}

@-webkit-keyframes slide-down {
  0% {
    transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
  }
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
  }
}

.bnner_sec {
  background-color: var(--darkBlue);
  position: relative;
  z-index: 1;
  padding: 130px 0 110px;
  overflow: hidden;
}

.big_round {
  position: absolute;
  top: 0;
  right: 107px;
  max-width: 1068px;
  width: 100%;
  z-index: -1;
}

.big_round img {
  width: 100%;
}

.smll_round {
  bottom: -30px;
  left: 0;
  position: absolute;
  width: 115px;
  z-index: -1;
}

.smll_round img {
  width: 100%;
}

.bnnr_shpe {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -1px;
  right: 0;
  pointer-events: none;
}

.bnnr_shpe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.bnnr_innr {
  position: relative;
  z-index: 2;
}

.bnnr_list {
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
  display: flex;
  align-items: center;
}

.bnnr_list li:not(:last-child) {
  margin-right: 26px;
}

.bnnr_list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--lightGray);
  line-height: 1;
}

.bnnr_list li i {
  flex: 0 0 auto;
  margin-right: 7px;
  line-height: 0;
}

.bnnrTxt_main h1 {
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 15px;
}

.bnnrTxt_main h1 span {
  color: var(--themeBlue);
}

.bnnrTxt_main p {
  font-size: 23px;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 30px;
}

.bnnrTxt_main .yellow_btn {
  margin-bottom: 25px;
}

.star_wrap p {
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 0;
}

.star_wrap span {
  display: block;
  /* max-width: 134px; */
  width: 100%;
}

.star_wrap span img {
  width: 100%;
}

.bnnr_rw {
  align-items: center;
  --bs-gutter-x: 38px;
}

.bnnr_txt_col {
  flex: 0 0 auto;
  width: 52%;
}

.bnnr_img_col {
  flex: 0 0 auto;
  width: 48%;
}

.bnnr-video-wrapper-outtr {
  position: relative;
}

.bnnr-video-wrapper-outtr::before {
  position: absolute;
  content: "";
  width: 100%;
  max-width: 563px;
  top: 100px;
  left: 58px;
  bottom: -30px;
  background: rgba(8, 7, 39, 0.33);
  filter: blur(42px);
  pointer-events: none;
  z-index: -1;
}

.bnnr-video-wrapper {
  margin-right: -140px;
  width: auto;
  /* overflow: hidden; */
  position: relative;
  z-index: 1;
}

.bnnr-video-wrapper::before {
  position: absolute;
  content: "";
  max-width: 178px;
  width: 100%;
  height: 1px;
  background-color: var(--themeGreen);
  right: 0;
  top: -15px;
}

.bnnr-video-wrapper::after {
  position: absolute;
  content: "";
  max-width: 178px;
  width: 100%;
  height: 1px;
  background-color: var(--themeGreen);
  left: 0;
  bottom: -15px;
}

.bnnr-video-wrapper figure {
  width: 100%;
  margin-bottom: 0;
  position: relative;
  border-radius: 7px;
  overflow: hidden;
}

.bnnr-video-wrapper figure::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    0deg,
    #000000 22.58%,
    rgba(102, 102, 102, 0) 97.12%
  );
  opacity: 0.41;
  pointer-events: none;
}

.bnnr-video-wrapper figure img {
  width: 100%;
  max-width: inherit;
}

.bnnr-video-wrapper .play_btn_wrapr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.play_btn_wrapr a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  width: 99px;
  height: 53px;
  background-color: var(--themeGreen60);
  border: 1px solid transparent;
}

.play_btn_wrapr a:hover {
  background-color: transparent;
  border-color: var(--white);
}

.play_btn_wrapr p {
  font-family: var(--adelia);
  font-weight: 400;
  font-size: 20px;
  line-height: 2.1;
  letter-spacing: 0.13em;
  color: var(--white);
  position: absolute;
  top: 120px;
  left: 0;
  white-space: nowrap;
  transform: translateX(-80%);
}

.play_btn_wrapr p i {
  position: absolute;
  width: 91px;
  top: -60px;
  right: -20px;
}

.dot_shpe {
  position: absolute;
  z-index: 1;
  width: 116px;
  bottom: 45px;
  right: 117px;
}

.dot_shpe img {
  width: 100%;
}

.large_txt {
  font-weight: 900;
  font-size: 6.125vw;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: linear-gradient(270deg, #f6f6f6 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: rotate(-180deg);
  writing-mode: vertical-lr;
  position: absolute;
  bottom: 0;
  right: -15px;
}

.this_for_sec {
  padding-top: 45px;
}

.this_for_head {
  margin-bottom: 33px;
}

.this_for_rw {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 25px;
}

.this_for_wrappr {
  width: 100%;
  background: var(--white);
  box-shadow: 0px 16px 44px rgba(213, 212, 232, 0.6);
  border-radius: 15px;
  padding: 7px 7px 25px;
  text-align: center;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--black);
}

.this_for_wrappr figure {
  height: 191px;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 25px;
}

.this_for_wrappr figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.this_for_wrappr p {
  padding: 0 25px;
}

.what_do_sec {
  padding-top: 75px;
  background-color: #eff2f7;
}

.what_do_rw {
  align-items: center;
}

.what_do_img_outtr {
  position: relative;
  width: auto;
  z-index: 1;
  padding-right: 113px;
  margin-left: -87px;
}

.what_do_img_wrappr {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.what_do_img_wrappr img {
  width: 100%;
}

.dot_sphe {
  position: absolute;
  top: 30px;
  left: -58px;
  z-index: -1;
  width: 116px;
  background-color: #eff2f7;
}

.dot_sphe img {
  mix-blend-mode: multiply;
  width: 100%;
}

.dot_sphe_smll {
  position: absolute;
  right: 67px;
  bottom: 25%;
  width: 33px;
  background-color: #eff2f7;
  z-index: -1;
}

.dot_sphe_smll img {
  width: 100%;
  mix-blend-mode: multiply;
}

.half_round {
  width: 275px;
  position: absolute;
  bottom: -50px;
  right: 65px;
  z-index: -1;
}

.half_round img {
  width: 100%;
}

.what_do_item {
  position: absolute;
  bottom: -90px;
  right: 20px;
  z-index: 2;
  width: 200px;
}

.what_do_item img {
  width: 100%;
}

.what_do_txt_wrppr .sec-head {
  text-align: left;
  margin-bottom: 18px;
}

.what_do_txt_wrppr .title-line::before {
  transform: inherit;
  left: 0;
}

.what_do_txt_wrppr > p {
  margin-bottom: 30px;
  max-width: 493px;
}

.what_do_txt_wrppr > p strong {
  color: #111112;
}

.what_do_txt_wrppr ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.what_do_txt_wrppr li {
  font-size: 19px;
  color: var(--bodyColor);
  padding-left: 37px;
  position: relative;
}

.what_do_txt_wrppr li:not(:last-child) {
  margin-bottom: 20px;
}

.what_do_txt_wrppr li::before {
  position: absolute;
  content: "";
  background: url(images/green-tick.svg) center no-repeat;
  width: 23px;
  height: 23px;
  background-size: 100%;
  left: 0;
  top: 2px;
}

.trackrecord_sec {
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.double_round {
  position: absolute;
  width: 67%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

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

.trackrecord_innr {
  position: relative;
  z-index: 1;
}

.trackrecord_innr .sec-head {
  margin-bottom: 33px;
}

.trackrecord_rw {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.trackrecord_wrappr {
  background: var(--white);
  border: 1px solid #e4e4f2;
  border-radius: 15px;
  padding: 23px;
  height: 100%;
  transition: 0.5s all;
}

.trackrecord_wrappr:hover {
  box-shadow: 0px 16px 44px rgba(213, 212, 232, 0.6);
}

.trackrecord_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.trackrecord_info h3 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: var(--black);
}

.trackrecord_info .trackrecord_icon {
  width: 56px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background-color: #edf3fc;
  border-radius: 5px;
  flex: 0 0 auto;
}

.trackrecord_wrappr > p {
  font-size: 19px;
  line-height: 1;
}

.start_mining_sec {
  padding-top: 85px;
  background-color: var(--darkBlue);
}

.text-white > * {
  color: var(--white);
}

.start_mining_sec .sec-head {
  margin-bottom: 56px;
}

.start_mining_rw {
  align-items: center;
}

.start_mining_txt_wrp {
  max-width: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #605f7d;
  border-radius: 15px;
  padding: 25px 24px;
  position: relative;
}

.start_mining_txt_wrp:not(:last-child) {
  margin-bottom: 30px;
}

.start_mining_txt_wrp::before {
  position: absolute;
  content: "";
  background: url(images/dwn-round.svg) center no-repeat;
  width: 6px;
  height: 36px;
  background-size: 100%;
  left: 10%;
  top: calc(100% - 3px);
}

.start_mining_txt_wrp:last-child::before {
  display: none;
}

.start_mining_txt_wrp .icon {
  background-color: #272644;
  width: 56px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  flex: 0 0 auto;
  margin-right: 37px;
}

.start_mining_txt_wrp p {
  font-size: 23px;
  color: #cdcdcd;
  flex: 1;
  line-height: 1.3;
  max-width: 300px;
  margin-bottom: 0;
}

.video_main {
  position: relative;
  padding-top: 15px;
  padding-bottom: 20px;
  margin-right: -148px;
}

.video_main::before {
  position: absolute;
  content: "";
  width: 178px;
  height: 1px;
  background-color: var(--themeGreen);
  top: 0;
  right: 0;
}

.video_main::after {
  position: absolute;
  content: "";
  width: 178px;
  height: 1px;
  background-color: var(--themeGreen);
  bottom: 0;
  left: 0;
}

.video_play_wrppr {
  width: 100%;
  width: 100%;
  position: relative;
}

.video_play_wrppr figure {
  width: 100%;
  margin-bottom: 0;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
}

.video_play_wrppr figure::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    0deg,
    #000000 22.58%,
    rgba(102, 102, 102, 0) 97.12%
  );
  opacity: 0.41;
}

.video_play_wrppr figure img {
  width: 100%;
}

.video_play_btnn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 99px;
  height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background-color: var(--themeGreen60);
  border: 1px solid transparent;
}

.video_play_btnn:hover {
  border-color: var(--white);
  background-color: transparent;
}

/* sg 22-apr-2024 */

.our-plus-play-wpr {
  position: relative;
}

.no-tech-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -53px;
  margin-bottom: 90px;
}

.no-tech-card {
  padding: 0 53px;
  border-right: 1px solid #dfdfdf;
}

.no-tech-card:last-child {
  border: none;
}

.no-tech-card-inn {
  position: relative;
  padding-left: 31px;
  max-width: 270px;
}

.no-tech-card-inn::before {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  width: 23px;
  height: 23px;
  background: url(images/tech.svg) no-repeat center;
  background-size: cover;
}

.our-plus-hero {
  margin-bottom: 77px;
}

.swiper-top-i {
  width: 69px;
  height: 69px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.swiper-col-1 .swiper-top-i {
  background: #edf3fc;
}

.swiper-col-2 .swiper-top-i {
  background: #f1f8f5;
}

.swiper-col-3 .swiper-top-i {
  background: #f2f2f7;
}

.swiper-col-4 .swiper-top-i {
  background: #f2f1ff;
}

.swiper-top-icon {
  position: relative;
  padding-bottom: 68px;
  flex: 0 0 auto;
}

.swiper-slide:first-child .swiper-top-icon::after {
  position: absolute;
  content: "";
  left: -12px;
  top: 23px;
  width: 23px;
  height: 23px;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: url(images/offer-arr.svg) no-repeat center center;
  background-size: 6px;
  background-color: var(--white);
}

.swiper-top-icon::before {
  position: absolute;
  content: "";
  right: -12px;
  top: 23px;
  width: 23px;
  height: 23px;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: url(images/offer-arr.svg) no-repeat center center;
  background-size: 6px;
  background-color: var(--white);
}

.offer-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 6px;
}

.swiper-top-arr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border: 1px solid var(--black);
  border-radius: 50%;
}

.swiper-text-outer {
  padding: 25px 11px 33px 14px;
  border-radius: 11px;
  flex: 1;
}

.swiper-text-outer h3 {
  margin-bottom: 10px;
}

.swiper-text-outer p {
  font-size: 16px;
}

.swiper-col-1 .swiper-text-outer {
  background-color: #f2f1ff;
}

.swiper-col-2 .swiper-text-outer {
  background-color: #ecfff8;
}

.swiper-col-3 .swiper-text-outer {
  background-color: #f2f2f7;
}

.swiper-col-4 .swiper-text-outer {
  background-color: #f2f1ff;
}

.our-plus-hero .swiper-slide {
  padding: 0 12px;
  height: inherit;
  display: flex;
  flex-direction: column;
}

.our-plus-hero .slider {
  margin: 0 auto;
  max-width: 1200px;
  /* height: initial;
    display: flex;
    flex-direction: column; */
}

.our-plus-hero .swiper-container {
  padding-bottom: 93px;
  /* overflow: initial; */
}

.swiper-out {
  margin-right: -220px;
}

.all_wrappr {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.our-plus-hero .swiper-scrollbar {
  background: #ececec;
}

/* .our-plus-hero .swiper-container-horizontal>.swiper-scrollbar, */
.our-plus-hero .all_wrappr > .swiper-scrollbar {
  overflow: hidden;
  height: 5px;
  width: 100%;
  max-width: calc(100% - 110px);
  margin: 0 auto;
  border-radius: 0 !important;
}

.cmnSwiper_arrw {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 50%;
  padding: 13px;
  /* position: absolute; */
  cursor: pointer;
  transition: 0.5s all;
  z-index: 2;
}

/* .swiper_prev {
    bottom: -18px;
    left: 0;
}
.swiper_next {
    bottom: -18px;
    right: calc(((100vw - 1140px) / 2) - 20px);
} */
.cmnSwiper_arrw.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.2;
}

.cmnSwiper_arrw:hover {
  border-color: var(--themeBlue);
  background-color: var(--themeBlue);
}

.cmnSwiper_arrw:hover img {
  filter: brightness(0) invert(1);
}

.swiper-scrollbar-drag {
  background: var(--black);
  border-radius: 0;
}

.our-plus-txt {
  max-width: 696px;
  margin: 0 auto;
  text-align: center;
}

.star_wrap p {
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 0;
}

.star_wrap span {
  display: block;
  /* max-width: 134px; */
  width: 100%;
}

.star_wrap span img {
  width: 100%;
}

.our-plus-txt .star_wrap {
  padding-top: 20px;
}

.our-plus-txt .star_wrap span {
  margin: 0 auto;
}

.animate-line {
  background: var(--themeGreen);
  height: 100px;
  width: 1px;
  display: inline-block;
}

.animate-circle {
  width: 19px;
  height: 19px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid var(--themeGreen);
  animation: wave 1.2s linear infinite;
  position: relative;
}

/* .animate-circle::before{
    position: absolute;
    content: '';
    border: 1px solid rgba(229, 229, 229, 0.5);
    animation: wave 1.2s linear infinite;
} */

.animate-line-out {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.animate-line-abs {
  position: absolute;
  bottom: 50px;
  right: 50px;
}

@keyframes wave {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 229, 229, 0.5),
      0 0 0 2px rgba(229, 229, 229, 0.5), 0 0 0 15px rgba(229, 229, 229, 0.5);
  }

  100% {
    box-shadow: 0 0 0 2px rgba(229, 229, 229, 0.5),
      0 0 0 15px rgba(229, 229, 229, 0.5), 0 0 0 30px rgba(229, 229, 229, 0);
  }
}

.our-plus-play-sec {
  overflow: hidden;
  position: relative;
}

.our-plus-hero .swiper-wrapper {
  height: initial;
}

.our-plus-hero .swiper-out {
  position: relative;
}

.our-plus-hero .swiper-out::before {
  position: absolute;
  content: "";
  background: url(images/vec-line.svg) no-repeat center;
  width: 100%;
  height: 1px;
  left: 0;
  top: 34px;
}

.our-plus-play-sec .large_txt {
  right: auto;
  bottom: auto;
  left: 39px;
  top: 100px;
  font-size: 9.75vw;
}

.live-result-sec {
  background: var(--sec-bg);
  overflow: hidden;
}

.live-result-row {
  --bs-gutter-x: 66px;
  align-items: center;
}

.live-result-clm-lft .live-result-sub-head {
  padding: 8px 15px;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  position: relative;
  background-color: var(--themeBlue);
  background-size: cover;
  border-radius: 5px 5px 5px 0;
  margin-bottom: 5px;
  display: inline-block;
}

.live-result-clm-lft .live-result-sub-head::before {
  position: absolute;
  content: "";
  background: url(images/blue-shpe.svg) center no-repeat;
  background-size: 100%;
  width: 12px;
  height: 12px;
  bottom: -12px;
  left: 0;
}

.live-result-clm-lft h2 {
  margin-bottom: 25px;
}

.live-result-clm-lft p {
  margin-bottom: 45px;
}

.live-result-clm-rt-inn {
  padding-left: 27px;
  padding-right: 83px;
  margin-right: -130px;
  position: relative;
}

.live-abs-1 {
  position: absolute;
  right: 0;
  bottom: 65px;
}

.live-result-clm-rt-inn figure,
.live-result-clm-rt-inn a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.live-result-clm-rt-inn a img {
  width: 100%;
}

.live-abs-2 {
  position: absolute;
  top: -70px;
  right: 50px;
  mix-blend-mode: multiply;
}

.live-abs-3 {
  position: absolute;
  left: -38px;
  top: -36px;
  mix-blend-mode: multiply;
}

/* sg 22-apr-2024 */

.client_about_sec .sec-head {
  max-width: 860px;
  width: 100%;
  margin: 0 auto 37px;
}

.client_about_wrappr {
  padding: 20px 33px 15px 12px;
  background: var(--white);
  box-shadow: 0px 16px 44px rgba(213, 212, 232, 0.6);
  border-radius: 15px;
}

.star_cri_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.star_cri_wrap > img {
  width: 100px;
  flex: 0 0 auto;
  margin-right: 12px;
}

.star_cri_wrap p {
  font-size: 10px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.star_cri_wrap p i {
  line-height: 0;
  width: 13px;
  margin-right: 4px;
  flex: 0 0 auto;
}

.star_cri_wrap p i img {
  width: 100%;
}

.client_about_wrappr .smll_txt {
  font-size: 10px;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.client_about_wrappr p {
  font-size: 15px;
  line-height: 1.6;
}

.client_about_wrappr p.userName {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 15px;
}

.client_about_rw {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.our-plus-txt .star_wrap p {
  color: var(--black);
}

.our-plus-txt.extra {
  padding-top: 74px;
}

/* SS Css Begin 22-04-2024 */

.wave {
  width: 100%;
  height: 73px;
  overflow: hidden;
  position: relative;
  pointer-events: none;
}

.shape1 {
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  width: 100%;
  z-index: -1;
  pointer-events: none;
}

.line-circle-anim {
  height: 157px;
  width: 97px;
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 9;
}

.line-circle-anim .amin-line {
  display: block;
  height: 99px;
  width: 1px;
  background: var(--themeGreen);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.line-circle-anim .amin-circle {
  position: absolute;
  top: 99px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid var(--themeGreen);
  background: transparent;
}

.line-circle-anim .amin-circle::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  animation: riple1 ease-out 3s infinite;
}

.line-circle-anim .amin-circle::before {
  content: "";
  position: absolute;
  width: 39px;
  height: 39px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(229, 229, 229, 0.36);
  animation: riple2 linear 2s infinite;
}

@keyframes riple2 {
  0% {
    width: 39px;
    height: 39px;
  }

  25% {
    width: 59px;
    height: 59px;
    opacity: 0.8;
  }

  50% {
    width: 79px;
    height: 79px;
    opacity: 0.5;
  }

  75% {
    width: 89px;
    height: 89px;
    opacity: 0.2;
  }

  100% {
    width: 97px;
    height: 97px;
    opacity: 0;
  }
}

@keyframes riple1 {
  0% {
    width: 19px;
    height: 19px;
  }

  25% {
    width: 29px;
    height: 29px;
    opacity: 0.7;
  }

  50% {
    width: 39px;
    height: 39px;
    opacity: 0.3;
  }

  75% {
    width: 53px;
    height: 53px;
    opacity: 0.3;
  }

  100% {
    width: 63px;
    height: 63px;
    opacity: 0;
  }
}

/* Client Result Section begin */

.client-result-sec {
  background: #eff2f7;
  padding: 78px 0 65px;
}

.client-result-sec .sec-head {
  max-width: 702px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 29px;
}

.client-result-sec .sec-head h2::after {
  display: none;
}

.client-result-sec .sec-head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 1px;
  background: var(--themeGreen);
  transform: translateX(-50%);
}

.client-result-outer {
  position: relative;
}

.client-result-outer .line-circle-position {
  bottom: -112px;
}

.client-result-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.client-result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-result-wrp {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
  padding-bottom: 82px;
}

/* End of Client Result Section */

/* Facility Section begin */

.trusted-wrp.trusted-left {
  text-align: left;
}

html,
body {
  overflow-x: hidden;
}

.facility-outer {
  position: relative;
}

.facility-outer .line-circle-position {
  right: 0;
  bottom: -149px;
}

.facility-content .trusted-wrp {
  padding-top: 20px;
}

.facility-video-wrp {
  padding-left: 203px;
  padding-right: 80px;
}

.facility-content {
  max-width: 493px;
}

.facility-wrp {
  align-items: center;
}

.facility-video {
  position: relative;
  width: 100%;
  padding: 16px 0 27px;
}

.facility-video::after {
  content: "";
  position: absolute;
  left: -58px;
  bottom: 0;
  width: 178px;
  height: 1px;
  background: var(--themeGreen);
}

.facility-video::before {
  content: "";
  position: absolute;
  right: -58px;
  top: 0;
  width: 178px;
  height: 1px;
  background: var(--themeGreen);
}

.watch-txt {
  position: absolute;
  bottom: 80px;
  left: 37px;
  width: 192px;
  display: block;
  pointer-events: none;
}

.watch-txt img {
  width: 100%;
  height: 100%;
}

.facility-vdo-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  border-radius: 7px;
  pointer-events: none;
}

.facility-vdo-inner::after {
  content: "";
  position: absolute;
  width: 306px;
  height: 373px;
  left: 17px;
  bottom: -26px;
  background: rgba(8, 7, 39, 0.33);
  filter: blur(42px);
  z-index: -1;
}

.facility-vdo-inner {
  position: relative;
  width: 100%;
}

.facility-video img,
.facility-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vdo-thumnail {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 7px;
}

.facility-video img.dots {
  position: absolute;
  right: -164px;
  bottom: -27px;
  width: 116px;
  height: 101px;
  z-index: -2;
}

/* End of Facility Section */

/* Testimonial Section Begin */

.testimonial-wrp {
  --bs-gutter-x: 45px;
  --bs-gutter-y: 45px;
  margin-bottom: 114px;
}

.testimonial-card {
  position: relative;
}

.testimonial-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 7px;
  margin-bottom: 29px;
}

.testimonial-img:hover::before {
  background: rgba(0, 0, 0, 0.42);
}

.testimonial-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.22);
  z-index: 1;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 80px;
  width: 453px;
  height: 301px;
  transform: translateX(-50%);
  z-index: -1;
  background: rgba(8, 7, 39, 0.33);
  opacity: 0;
  filter: blur(84px);
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.testimonial-card:hover::before {
  opacity: 1;
}

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

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 137px;
  height: 75px;
  background: var(--themeGreen60);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transform: translate(-50%, -50%);
  cursor: pointer;
  border: 1px solid var(--themeGreen60);
}

.play-btn:hover {
  background: transparent;
  border-color: var(--white);
}

.play-btn img {
  width: 35px;
  height: 40px;
}

.testi-play::before {
  content: "PL";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-weight: 600;
  font-size: 47px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0.5, 3, 0.7, 0.7);
  -moz-transition: all 0.3s cubic-bezier(0.5, 3, 0.7, 0.7);
  transition: all 0.3s cubic-bezier(0.5, 3, 0.7, 0.7);
}

.testi-play::after {
  content: "AY";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-weight: 600;
  font-size: 47px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0.5, 3, 0.7, 0.7);
  -moz-transition: all 0.3s cubic-bezier(0.5, 3, 0.7, 0.7);
  transition: all 0.3s cubic-bezier(0.5, 3, 0.7, 0.7);
}

.testi-play:hover::after,
.testi-play:hover::before {
  opacity: 1;
}

.testi-play:hover::after {
  transform: translate(calc(100% + 13px), -50%);
}

.testi-play:hover::before {
  transform: translate(calc(-100% - 22px), -50%);
}

.testimonial-card-content h3 {
  font-size: 16px;
  margin-bottom: 17px;
}

.testimonial-card-content p {
  font-size: 15px;
  margin-bottom: 10px;
}

.rating-star {
  line-height: 1;
  display: block;
}

.trusted-wrp {
  text-align: center;
}

.trusted-wrp .yellow_btn {
  margin-bottom: 20px;
}

.trusted-wrp .yellow_btn:hover {
  background: var(--darkBlue);
  color: var(--white);
}

.testimonial-outer {
  position: relative;
}

.testimonial-outer .line-circle-position {
  bottom: -116px;
  left: 0;
}

.testimonial-sec {
  background: #eff2f7;
  padding: 84px 0 69px;
}

/* End of Testimonial Section */

/* Our Team Section begin */

.our-team-outer .sec-head h2 {
  margin-bottom: 17px;
}

.ourteam-card-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  padding: 19px 24px 19px 13px;
  border-radius: 15px;
  box-shadow: 0 16px 44px rgba(213, 212, 232, 0.6);
}

.ourteam-card-inner::before {
  content: "";
  position: absolute;
  width: 0;
  height: 74px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--themeBlue);
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0.5, 3, 0.7, 0.7);
  -moz-transition: all 0.3s cubic-bezier(0.5, 3, 0.7, 0.7);
  -ms-transition: all 0.3s cubic-bezier(0.5, 3, 0.7, 0.7);
  -o-transition: all 0.3s cubic-bezier(0.5, 3, 0.7, 0.7);
  transition: all 0.3s cubic-bezier(0.5, 3, 0.9, 0.9);
}

.ourteam-card-inner:hover::before {
  width: 3px;
}

.team-mem-img {
  padding: 11px;
  position: relative;
  width: 117px;
  height: 117px;
  border-radius: 50%;
  /* overflow: hidden; */
}

.team-mem-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-mem-img-wrp {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.team-mem-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid var(--themeBlue);
  pointer-events: none;
  z-index: -2;
  border-radius: 50%;
}

.team-mem-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  background: var(--white);
  /* border-radius: 50%; */
  z-index: -1;
}

.team-mem-dtls {
  width: calc(100% - 117px);
  padding-left: 27px;
}

.team-mem-dtls h3 {
  font-size: 23px;
  color: var(--black);
  margin-bottom: 0;
}

.team-mem-dtls .designation {
  font-size: 18px;
  color: var(--bodyColor);
}

.our-team-cards-wrp {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
  justify-content: center;
}

/* End Of Our Team Section */

/* Intro Section Begin */

.intro-sec {
  background: #080727;
  padding: 126px 0 113px;
}

/* .intro-right-wrp{
    padding-left: 52px;
} */
.intro-right-wrp p {
  color: var(--white);
  margin-bottom: 32px;
}

.intro-right-content {
  color: var(--white);
}

.intro-right-content .sec-head {
  margin-bottom: 32px;
  text-align: left;
}

.intro-right-content .sec-head h2::after {
  left: 0;
  transform: none;
}

.white-head h2 {
  color: var(--white);
}

.intro-left {
  position: relative;
  width: 100%;
  height: 100%;
}

.intro-left-img {
  padding: 28px 0;
  /* margin-left: -148px; */
  /* max-width: 400px; */
  width: 45%;
  overflow: hidden;
  border-radius: 7px;
  margin: 0 45px 20px 0;
  position: relative;
  float: left;
  clear: both;
}

.intro-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-left-img::before,
.intro-left-img::after {
  content: "";
  position: absolute;
  width: 178px;
  height: 1px;
  background: var(--themeGreen);
  pointer-events: none;
}

.intro-left-img::before {
  right: 0;
  top: 0;
}

.intro-left-img::after {
  left: 0;
  bottom: 0;
}

.name-text {
  color: var(--themeBlue);
  font-family: var(--adelia);
  padding-left: 103px;
  position: relative;
}

.name-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  width: 94px;
  height: 1px;
}

/* End Of Intro Section */

/* Faq Section begin */

.faq-section {
  padding: 60px 0 84px;
}

.faq-lists {
  margin: 0 0 -19px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.faq-lists li {
  width: 50%;
  margin-bottom: 19px;
}

.faq-lists li:nth-child(even) {
  padding-left: 15px;
}

.faq-lists li:nth-child(odd) {
  padding-right: 15px;
}

.faq-wrp {
  border-radius: 15px;
  padding: 25px 20px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(213, 212, 232, 0.6);
}

.question {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.question h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  margin: 0;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.down-icon {
  width: 25px;
  height: 25px;
  background: #eff2f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: 0;
  padding: 5px;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.down-icon:hover {
  background: var(--darkBlue);
}

.down-icon:hover img {
  filter: brightness(0) invert(1);
}

.down-icon img {
  width: 13px;
  height: 9px;
  filter: brightness(0);
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.question h3:hover {
  color: var(--darkBlue);
}

.faq-wrp .answer {
  padding-top: 20px;
}

.faq-wrp.active .down-icon {
  background: var(--darkBlue);
}

.faq-wrp.active .down-icon img {
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
}

.ans-content {
  font-size: 15px;
}

/* End Of Faq Section */

/* Simplest Way Begin */

.simplest-way-sec {
  padding-bottom: 77px;
}

.simplest-way-sec h2 {
  max-width: 992px;
  margin: 0 auto 28px;
}

.simplest-way-outer {
  text-align: center;
}

.simplest-way-outer .yellow_btn {
  margin-bottom: 18px;
}

.simplest-way-outer .yellow_btn:hover {
  background: var(--darkBlue);
  color: var(--white);
}

.trusted-investors p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--black);
}

/* End Of Simplest Way */

/* Footer Section Begin */

.footer-sec {
  padding: 46px 0 26px;
  background: #080727;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-widget {
  padding-bottom: 61px;
}

.footer-links li {
  padding: 0 16px;
  /* padding: 0 43px; */
  line-height: 1.7;
}

.footer-links li a,
.copyright p,
.copyright p a,
.copyright-links a {
  color: #b8b7c3;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0;
}

.footer-links li a:hover,
.copyright p a:hover,
.copyright-links a:hover {
  color: var(--white);
}

.copyright {
  display: flex;
  align-items: center;
}

.copyright-links {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.copyright-links a:not(:last-child) {
  margin-right: 72px;
}

/* End Of Footer Section */

/* End of SS Css 22-04-2024 */

/* / 07:55pm / */

.banner-outer,
.what-do-outer,
.live-result-wpr,
.client-about-outer {
  position: relative;
}

.live-result-sec {
  overflow: visible;
}

.banner-outer .line-circle-position {
  right: 120px;
  bottom: -138px;
}

.what-do-outer .line-circle-position {
  left: -178px;
  bottom: -148px;
}

.our-plus-play-wpr .line-circle-position {
  right: 13px;
  bottom: 0;
}

.live-result-wpr .line-circle-position {
  left: 13px;
  bottom: -189px;
}

.client-about-outer .line-circle-position {
  right: 0;
  bottom: 0;
}

.line-circle-position.reveal .play-reveal {
  transform: translate(-50%, 0);
}

.banner-outer .smll_round {
  display: none;
}

/* / 07:55pm / */

.fttr_logo_wrappr {
  max-width: 240px;
  width: 100%;
  margin: 0 auto 15px;
}

.fttr_logo_wrappr a,
.fttr_logo_wrappr a img {
  width: 100%;
}

/* .intro-sec .intro-outer {
    align-items: center;
} */
/* .navbar-brand .mobile_img {
    display: none;
    width: 100%;
} */

/* animation CSS start */

.reveal > * {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.reveal .play-reveal {
  opacity: 1;
  transform: translateY(0px);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.index_reveal > * {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.index_reveal .index-play-reveal {
  opacity: 1;
  transform: translateY(0px);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.line-circle-anim.reveal .amin-line {
  transform: translateX(-50%) translateY(30px);
  height: 0;
  transition: 1s all;
}

.line-circle-anim.reveal .amin-line.play-reveal {
  height: 99px;
  transform: translateX(-50%) translateY(0);
}

.line-circle-anim.reveal .amin-circle {
  transform: translateX(-50%) translateY(30px) scale(0);
  transition-delay: 1s;
  transition: 1s all;
}

.line-circle-anim.reveal .amin-circle.play-reveal {
  transform: translateX(-50%) translateY(0) scale(1);
}

/* animation CSS end */

/* css start 20-5-24 */
.client_about_wrappr {
  height: 100%;
}

.privacy-blk h2 {
  font-size: 22px;
  font-weight: bold;
}

.privacy-blk p {
  font-size: 16px;
}

.privacy-blk ul {
  list-style-type: none;
  padding-left: 0;
}

.privacy-blk ul li {
  font-size: 16px;
  margin-bottom: 5px;
}

.privacy-blk ul li:last-child {
  margin-bottom: 0;
}

.product-rits-wrapss {
  background: #eff2f7;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-pts {
  position: absolute;
  left: -30px;
  top: -30px;
  z-index: -1;
}

.product-head h2 {
  font-size: 32px;
}

.product-head p {
  font-size: 16px;
  color: var(--black);
}

.product-head {
  max-width: 540px;
  margin-bottom: 21px;
}

.product-rowss {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.product-info .product-rowss:last-child {
  margin-bottom: 0;
}

.product-rowss span {
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
  letter-spacing: 0.02em;
  min-width: 141px;
  padding-right: 14px;
}

.product-rowss p {
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.product-rits-figs img {
  max-height: 542px;
  object-fit: contain;
  object-position: center;
}

.product-rits-figs {
  margin-bottom: 0;
  text-align: center;
  overflow: hidden;
}

/* css end 20-5-24 */

/* css start 21-5-24 */
.inner-banner-sec {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
  position: relative;
  background: var(--darkBlue);
  z-index: 1;
  overflow: hidden;
}

.inner-ban-pt-1 {
  top: 30px;
  left: 0;
  position: absolute;
  width: 115px;
  z-index: -1;
}

.inner-ban-pt-2 {
  position: absolute;
  top: -100px;
  right: 107px;
  max-width: 1068px;
  width: 100%;
  z-index: -1;
}

.inner-ban-pt-1 img,
.inner-ban-pt-2 img,
.inner-ban-pt-3 img,
.inner-ban-pt-4 img {
  width: 100%;
}

.inner-ban-pt-3 {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
}

.pstn-rltv {
  position: relative;
  z-index: 1;
}

.inner-ban-content h1 {
  color: var(--white);
}

.inner-ban-content h1 span {
  color: var(--themeBlue);
}

.inner-ban-content p {
  color: var(--white);
}

.inner-ban-pt-4 {
  position: absolute;
  bottom: 110px;
  right: 0;
  width: 115px;
  z-index: -1;
}

.inner-ban-pt-5 {
  position: absolute;
  bottom: -80px;
  right: 0;
  width: 75px;
}

/* css end 21-5-24 */

/* css start 27-5-24 */
.product-get-div {
  margin-top: 30px;
}

.product-rits-wrapss {
  min-height: 564px;
}

.product-rits-figs img {
  max-height: 440px;
}

/* css end 27-5-24 */

/* css start 29-5-24 */
.yellow_btn:hover {
  background-color: var(--themeBlue) !important;
  color: var(--white) !important;
}

.testimonial-card:hover::before,
.testimonial-card::before {
  display: none;
}

.testimonial-card iframe {
  border-radius: 7px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.testimonial-card {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

/* css end 29-5-24 */

/* css start 30-5-24 */
.products-listing-blks .this_for_wrappr figure {
  background: #eff2f7;
  padding: 35px;
}

.products-listing-blks .this_for_wrappr figure img {
  object-fit: contain;
}

.products-listing-blks .this_for_wrappr .h5-title {
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.products-listing-blks .this_for_wrappr {
  height: 100%;
}

.products-listing-blks .this_for_wrappr:hover .h5-title {
  color: var(--themeBlue);
}

/* css end 30-5-24 */

/* css start 3-6-24 */
.settle-card i {
  width: 145px;
  height: 144px;
  display: inline-block;
  overflow: hidden;
  border: 1px solid #645cff;
  border-radius: 100%;
  padding: 7px;
}

.settle-card i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
}

.settle-card {
  background: var(--white);
  box-shadow: 0px 16px 44px rgba(213, 212, 232, 0.6);
  border-radius: 15px;
  padding: 31px;
  text-align: center;
  height: 100%;
}

.settle-card i {
  margin-top: -100px;
}

.settle-head::before {
  display: none;
}

.settle-head {
  padding-bottom: 60px;
}

.settle-row {
  --bs-gutter-x: 39px;
  --bs-gutter-y: 119px;
  justify-content: center;
}

.settle-card p {
  font-size: 16px;
}

.settle-card h3 {
  font-size: 23px;
  color: var(--black);
  margin: 20px 0 25px;
}

.settle-para p {
  font-size: 30px;
  font-weight: bold;
  margin-top: 80px;
}

.find-linkss {
  color: var(--themeBlue);
  text-decoration: underline !important;
  font-weight: bold;
}

.find-linkss:hover {
  color: var(--yellow);
}

.settle_for_sec {
  padding: 45px 0 90px;
}

.why-do-sect {
  position: relative;
  padding: 70px 0 150px;
}

.why-do-sect::before {
  content: "";
  position: absolute;
  background: var(--darkBlue);
  height: 459px;
  width: 100%;
  left: 0;
  top: 0;
}

.why-do-crcl1 {
  position: absolute;
  left: 0;
  top: 308px;
  opacity: 0.3;
}

.why-do-crcl2 {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.why-do-blks,
.why-do-blks h2,
.why-do-blks p {
  color: var(--white);
}

.why-do-blks p span {
  font-weight: bold;
}

.why-do-blks h2 {
  position: relative;
  padding-bottom: 43px;
  margin-bottom: 29px;
}

.why-do-blks h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  transform: translateX(0) translateY(30px);
  width: 80px;
  height: 1px;
  background: var(--themeGreen);
  transition: 0.8s all;
  opacity: 0;
}

.why-do-blks h2::before {
  opacity: 1;
  transition-delay: 1s;
  transform: translateX(0) translateY(0);
}

.why-blk-cards {
  border-radius: 15px;
  padding: 30px 20px;
  height: 100%;
}

.last-but-blk .rowspan {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
  justify-content: center;
}

.last-but-blk .colspan:nth-child(1) .why-blk-cards,
.last-but-blk .colspan:nth-child(8) .why-blk-cards {
  background: #f2f1ff;
}

.last-but-blk .colspan:nth-child(2) .why-blk-cards,
.last-but-blk .colspan:nth-child(7) .why-blk-cards {
  background: #ecfff8;
}

.last-but-blk .colspan:nth-child(3) .why-blk-cards,
.last-but-blk .colspan:nth-child(6) .why-blk-cards {
  background: #f2f2f7;
}

.last-but-blk .colspan:nth-child(4) .why-blk-cards,
.last-but-blk .colspan:nth-child(5) .why-blk-cards {
  background: #f6fffc;
}

.why-blk-cards h3 {
  font-size: 23px;
  color: var(--black);
  margin: 20px 0 25px;
}

.why-blk-cards p {
  font-size: 16px;
}

.why-do-blks {
  margin-bottom: 56px;
}

.last-but-blk {
  margin-bottom: 114px;
}

.last-sec-fig {
  padding-right: 15px;
  margin-bottom: 0;
  height: 100%;
}

.last-rit-cont h2 {
  line-height: 1.24;
  margin-top: -10px;
}

.last-rit-cont {
  padding-left: 41px;
}

.last-para-blk p {
  line-height: 1.47;
}

.last-but-blk-btm .colspan-lft {
  width: 51%;
}

.last-but-blk-btm .colspan-rit {
  width: 49%;
}

.last-sec-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-head {
  text-align: left;
  margin-bottom: 0 !important;
  position: relative;
}

.mission-head p span {
  font-weight: 700;
  color: var(--black);
}

/* css end 3-6-24 */

/* css start 4-6-24 */
.we-msn-card {
  background: var(--white);
  border: 1px solid #e4e4f2;
  box-shadow: 0px 16px 44px rgba(213, 212, 232, 0.6);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
}

.we-mssn-blk .rowspan {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
  justify-content: center;
}

.we-mission {
  background: #eff2f7;
  padding: 80px 0;
}

.we-msn-card i {
  background: #edf3fc;
  border-radius: 5px;
  width: 70px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}

.we-msn-head {
  font-weight: bold;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.settle-card p {
  position: relative;
  display: inline;
}

.settle-card p::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  width: 16px;
  height: 13px;
  background: url(images/t-qt.svg) no-repeat;
  background-size: 16px;
  background-position: top left;
}

.settle-card p::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 6px;
  width: 16px;
  height: 13px;
  background: url(images/b-qt.svg) no-repeat;
  background-size: 16px;
  background-position: top left;
}

.settle-para {
  text-align: center;
  background: #f2f1ff;
  padding: 50px 0;
  text-align: center;
  position: relative;
}

.cmn-crcl-span1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 879px;
}

.cmn-crcl-span2 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.3;
  width: 210px;
}

.our-company-inner {
  min-height: 400px;
}

.cmn-crcl-span1 img,
.cmn-crcl-span2 img {
  width: 100%;
}

.mission-head h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  transform: translateX(0) translateY(30px);
  width: 80px;
  height: 1px;
  background: var(--themeGreen);
  transition: 0.8s all;
  opacity: 0;
}

.mission-head h2::before {
  opacity: 1;
  transition-delay: 1s;
  transform: translateX(0) translateY(0);
}

.mission-head h2 {
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 30px;
}

.why-do-hire {
  background: var(--darkBlue);
  padding: 68px 0 73px;
  position: relative;
}

.find-parasss {
  margin-bottom: 55px;
}

.find-parasss p {
  /* font-size: 30px; */
  font-size: 26px;
  font-weight: bold;
  line-height: 1.26;
  color: var(--white);
  margin-bottom: 5px;
}

.why-do-hire .why-do-blks {
  margin-bottom: 32px;
}

.meet-real-blkss {
  margin-top: 81px;
  margin-bottom: 65px;
}

.meet-real-blkss .rowspan {
  align-items: center;
  --bs-gutter-x: 74px;
  margin-bottom: 100px;
}

.meet-real-blkss .rowspan:last-child {
  margin-bottom: 0;
}

.meet-real-blkss .rowspan:nth-child(even) {
  flex-direction: row-reverse;
}

.meet-ral-heading {
  font-size: 40px;
  font-weight: bold;
  position: relative;
  padding-top: 25px;
  margin-bottom: 13px;
}

.meet-ral-heading::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  transform: translateX(0) translateY(30px);
  width: 80px;
  height: 1px;
  background: var(--themeGreen);
  transition: 0.8s all;
  opacity: 0;
}

.meet-ral-heading::before {
  opacity: 1;
  transition-delay: 1s;
  transform: translateX(0) translateY(0);
}

.frm-linkss {
  color: var(--themeBlue);
  text-decoration: underline !important;
}

.frm-linkss:hover {
  color: var(--yellow);
}

.why-do-blks p a {
  font-weight: bold;
  color: var(--white);
}

.why-do-blks p a:hover {
  color: var(--themeBlue);
}

.we-msn-card i img {
  max-height: 43px;
  object-fit: contain;
}

.meet-real-figure img {
  width: 100%;
}

.meet-real-figure {
  margin-bottom: 0;
}

.newbtn-wrap .yellow_btn {
  margin-top: 25px;
}

.why-do-hire .why-do-crcl1 {
  top: auto;
  bottom: 0;
}

.why-do-hire .why-do-crcl2 {
  bottom: 0;
}

.find-parasss p {
  color: var(--bodyColor);
}

.meet-real {
  padding-top: 67px;
}

.why-do-sect .why-do-crcl2 {
  height: auto;
}

.open-frm-linkss {
  color: var(--bodyColor);
  text-decoration: underline !important;
  color: var(--themeBlue);
  font-weight: bold;
}

.open-frm-linkss:hover {
  color: var(--yellow);
}

.curious-head p {
  margin-bottom: 2px;
}

.curious-head p {
  font-size: 22px;
}

.settle-para .settle-head {
  padding-bottom: 0;
  margin-bottom: 35px;
}

.cmn-crcl-span3 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 115px;
}

.cmn-crcl-span4 {
  position: absolute;
  right: 0;
  top: 0;
  width: 148px;
}

.cmn-crcl-span3 img,
.cmn-crcl-span4 img {
  opacity: 0.08;
}

.settle-para .settle-head h2 {
  font-size: 40px;
}

/* css end 4-6-24 */
.settle-para .yellow_btn {
  font-weight: 600;
  font-size: 22px;
  padding: 16px 30px;
}

.job-section {
  background: #eff2f7;
  /* background: #f2f1ff; */
  padding: 50px 0;
  position: relative;
}

.job-category-titel h3 {
  font-size: 24px;
  margin: 40px 0 20px;
}

.each-job-wpr {
  background: var(--white);
  box-shadow: 0px 16px 44px rgba(213, 212, 232, 0.6);
  border-radius: 15px;
  padding: 31px;
  height: 100%;
}

.each-job-wpr-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.job-details-left {
  width: calc(100% - 260px);
  padding-right: 20px;
}

.job-details-left h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--darkBlue);
  /* color: #645cff; */
  line-height: 1.2;
  margin: 0 0 20px;
}

.job-tag-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.job-tag-list li {
  margin-right: 14px;
  padding-right: 14px;
  position: relative;
  line-height: 0;
  display: flex;
  align-items: center;
}

.job-tag-list li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.job-tag-list li:not(:last-child):before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 16px;
  width: 1px;
  background-color: #645cff;
}

.job-tag-list li i {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.job-tag-list li span {
  font-size: 16px;
  font-weight: 500;
  /* color: var(--bodyColor); */
  color: #645cff;
  /* padding: 7px 12px; */
  /* background-color: #e4e2fd; */
  /* background-color: #f2f1ff; */
  display: inline-flex;
  /* border-radius: 7px; */
  /* font-size: 13px; */
  line-height: 1;
}

.job-details-right .job-apply-btn {
  padding: 12px 16px;
  min-width: 1px;
  font-weight: 500;
  display: inline-flex;
  overflow: hidden;
}

/* .job-details-left-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
} */
/* Partner Css Start  */
.partner-logo-sec {
  padding: 80px 0;
}

.partner-logo-head {
  text-align: center;
  margin-bottom: 30px;
}

.partner-logo-wraper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: -15px -42px;
}

.partner-logo-itm {
  padding: 15px 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-itm figure {
  margin-bottom: 0;
}

.partner-logo-itm figure img {
  /* mix-blend-mode: luminosity; */
  opacity: 0.8;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* .partner-logo-itm:hover figure img {
  mix-blend-mode: normal;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
} */
.star_wrap-in {
  max-width: 255px;
}

.star_wrap-center {
  margin: 0 auto;
}

/* Partner Css End  */

/* Support start 08-05-2025 */

.inner-bnr-sec-main {
  position: relative;
  background-color: var(--darkBlue);
  padding: 70px 0 120px 0;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inner-bnr-cont h1 {
  /* font-size: 60px; */
  color: var(--white);
  font-weight: 600;
}

.inner-bnr-cont h1 span {
  color: var(--themeBlue);
}

.inner-bnr-cont p {
  font-size: 19px;
  color: var(--white);
}

.bnr-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 100%;
  width: 100%;
  /* object-fit: cover; */
}

.inner-bnr-cont {
  max-width: 1086px;
  position: relative;
}

.shape-01 {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 5%;
  pointer-events: none;
}

.shape-02 {
  position: absolute;
  top: 0;
  right: 7%;
  width: 44%;
  pointer-events: none;
}

.cmn-gap {
  padding: 90px 0;
}

.carg-head-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.carg-head-txt {
  font-size: 19px;
  width: 84%;
  margin-bottom: 0;
  padding-right: 20px;
}

.sort-wrap {
  width: 16%;
  display: flex;
  justify-content: flex-end;
}

.sort-wrap select {
  background-color: var(--yellow);
  background-image: url("images/arr-wh.png");
  background-size: 13px;
  color: var(--white);
  height: 60px;
  width: 156px;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  background-position: center right 40px;
}

.carg-col-head h2 {
  font-weight: 600;
  font-size: 22px;
}

.carg-col-head {
  padding-bottom: 14px;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.carg-col-head::before {
  position: absolute;
  content: "";
  width: 41%;
  height: 2px;
  background-color: var(--bodyColor);
  bottom: 0;
  left: 0;
}

.carg-col-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.carg-col-list li {
  line-height: 1;
  margin-bottom: 25px;
}

.carg-col-list li:last-child {
  margin-bottom: 0;
}

.carg-col-list li a {
  color: var(--bodyColor);
  font-size: 19px;
  letter-spacing: 0;
}

.carg-col-list li a:hover {
  color: var(--yellow);
}

.carg-col-left-wrap {
  padding: 30px 21px 30px 30px;
  background: #ffffff;
  box-shadow: 1px 4px 23.8px 8px rgba(209, 209, 209, 0.25);
  border-radius: 20px;
}

.carg-col-left {
  width: 18%;
}

.pro-head h3 {
  font-size: 23px;
  font-weight: 600;
}

.pro-cont {
  font-size: 19px;
  color: var(--bodyColor);
  letter-spacing: 0;
}

.pro-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding-top: 69%;
  margin-bottom: 23px;
}

.pro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.pro-head {
  margin-bottom: 14px;
}

.product-card {
  padding: 17px 16px 28px 16px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  height: 100%;
}

.pro-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 22px 22px 22px 0;
  line-height: 1;
  border-radius: 5px;
  /* background-color: var(--yellow); */
  /* color: var(--white); */
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.pro-btn p {
  margin-bottom: 0;
}

.pro-btn span img {
  transition: all 0.3s ease-in-out;
}

.pro-btn span {
  width: 42px;
  margin-left: 12px;
}

.product-card:hover .pro-btn {
  background-color: var(--yellow);
  color: var(--white);
  padding: 22px;
}

.product-card:hover .pro-btn span img {
  filter: brightness(0) invert(1);
}

.product-card:hover .pro-img img {
  transform: scale(1.08);
}

.product-card:hover {
  box-shadow: 1px 4px 23.8px 8px rgba(209, 209, 209, 0.25);
  border-color: transparent;
}

.product-row {
  --bs-gutter-y: 30px;
}

.carg-col-rgt {
  width: 82%;
}

.carg-row {
  --bs-gutter-y: 30px;
  --bs-gutter-x: 30px;
}

.user-wrap {
  display: flex;
  align-items: center;
}

.user img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.user {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.user-txt {
  display: flex;
  align-items: center;
}

.user-txt p {
  margin-bottom: 0;
  padding: 0 8px;
  border-right: 1px solid #242179;
}

.user-txt p:last-child {
  border-right: none;
}

.blog-dtls-col-left {
  width: 66%;
}

.blog-dtls-col-left-wrap > p {
  font-size: 19px;
  letter-spacing: 0;
}

.blog-dtls-col-left-wrap figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trusted-wrap {
  padding: 70px 48px;
  background-color: #eff2f7;
  border-radius: 10px;
  margin: 20px 0;
}

.trusted-wrap span {
  color: var(--themeBlue);
  margin-bottom: 6px;
  display: block;
}

.trusted-wrap h2 {
  font-weight: 600;
  letter-spacing: 0;
}

.cmn-btn {
  padding: 22px 24px;
  border-radius: 5px;
  background-color: var(--yellow);
  line-height: 1;
  text-transform: capitalize;
  color: var(--white);
  font-size: 16px;
  min-width: 232px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cmn-btn:hover {
  background-color: var(--themeBlue);
  color: var(--white);
}

.rating-wrap {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-top: 27px;
  flex-wrap: wrap;
}

.rating-wrap p {
  margin-bottom: 0;
}

.rating-wrap strong {
  font-weight: 500;
  margin-right: 15px;
}

.rating-wrap p {
  font-size: 15px;
  padding: 0 10px;
}

.rating-wrap img {
  width: 17px;
}

.prev-btn span {
  transform: rotate(180deg);
  display: inline-block;
  width: 44px;
  margin-right: 12px;
}

.prev-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}

.blog-dtls-col-rgt {
  width: 34%;
}

.bitcoin-form-wrap {
  background-color: var(--themeBlue);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  color: var(--white);
}

.bitcoin-form-wrap h3 {
  font-size: 34px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.23;
  letter-spacing: 0;
}

.form-inn input[type="text"],
.form-inn input[type="email"] {
  width: 100%;
  border: none;
  border-bottom: 1px solid #948fff;
  border-radius: 0;
  padding: 0 0 10px 0;
  color: var(--white);
  font-size: 18px;
}

.form-inn input[type="text"]::placeholder,
.form-inn input[type="email"]::placeholder {
  color: var(--white);
}

.form-row {
  --bs-gutter-y: 26px;
}

.sbt-btn input[type="submit"] {
  font-size: 16px;
  color: var(--white);
  height: 60px;
  width: 100%;
  border: none;
  border-radius: 5px;
  font-weight: 400;
}

.sbt-btn {
  margin-top: 30px;
}

.form-btm-txt {
  font-size: 19px;
  max-width: 315px;
  margin: 20px auto 0 auto;
  letter-spacing: 0;
}

.blog-dtls-col-rgt-img {
  background: #ffffff;
  box-shadow: 1px 4px 23.8px 8px rgba(209, 209, 209, 0.25);
  border-radius: 20px;
}

.bitcoin-form-wrap {
  margin-bottom: 30px;
}

.blog-dtls-col-rgt-img {
  margin-bottom: 30px;
}

.blog-dtls-col-rgt-img:last-child {
  margin-bottom: 0;
}

.prev-btn:hover {
  color: var(--yellow);
}

.blog-dtls-row {
  --bs-gutter-y: 30px;
}
.blog-dtls-col-rgt-img img {
  width: 100%;
}
/* Support end 08-05-2025 */

/* optin-section css start */
.optin-section {
  padding-top: 100px;
}

.optin-section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.optin-section-heading h1 {
  line-height: 1.3;
  margin: 0;
}

.optin-section-left {
  text-align: center;
}

.optin-section-left p {
  font-size: 18px;
  font-weight: normal;
  margin: 0;
}

.optin-section-left p strong {
  display: block;
}

.optin-section-left p span {
  font-size: 16px;
}

.optin-section-left figure {
  max-width: 350px;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

.optin-section-right ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.optin-section-right ul li {
  position: relative;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.4;
  color: var(--black);
}

.optin-section-right ul li:not(:last-child) {
  margin-bottom: 30px;
}

.optin-section-right ul li::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url(images/fa-solid_check.svg) no-repeat center;
  background-size: 20px;
  margin: 0 5px -3px 0;
}

.optin-section-right .yellow_btn {
  min-width: auto;
  max-width: 100%;
  width: 100%;
  font-weight: 500;
}

.optin-sec-right-img {
  max-width: 375px;
  width: 100%;
  margin: 30px auto 0;
}

.ty-section-header {
  margin: 0 0 40px;
  text-align: center;
}

.ty-section-header h1.h3-title {
  font-size: 30px;
  line-height: 1.4;
  margin: 0 0 20px;
}

.ty-section-header h1.h3-title em {
  font-weight: 500;
  color: var(--black);
}

.ty-section-header p {
  font-size: 22px;
  margin: 0;
  color: var(--black);
}

.ty-video-wpr {
  max-width: 1000px;
  margin: 0 auto 55px;
  width: 100%;
  /* padding-top: 48.5%; */
  position: relative;
}

/* .ty-video-wpr iframe {
  width: 100%;
  display: block;
  position: absolute;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
} */

.ty-interest-wpr {
  padding: 40px 55px;
  outline: none;
  background-color: rgba(131, 131, 131, 0.25);
  max-width: 720px;
  width: 100%;
  margin: 0 auto 35px;
  border-radius: 15px;
  text-align: center;
}

.ty-interest-wpr h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 20px;
}
.ty-interest-wpr .yellow_btn {
  min-width: auto;
  max-width: 100%;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.ty-interest-wpr .yellow_btn img {
  margin-right: 10px;
}
.ty-interest-img-wpr {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.ty--img-wpr img {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  display: block;
}
/* optin-section css end */

/* 15-05-2025 M.M Css Start */
.new-header {
  padding: 14px 0;
  background-color: var(--black);
}
.new-navbar-brand {
  display: block;
  width: 175px;
  margin: 0 auto;
}
.new-navbar-brand img {
  width: 100%;
}
.new-footer {
  background-color: #f4f4f4;
}
.new-footer-top {
  padding: 26px 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: -12px -15px;
}

.new-footer-left {
  width: 75%;
  padding: 12px 15px;
}

.new-footer-right {
  width: 25%;
  padding: 12px 15px;
  text-align: right;
}
.new-footer-logo {
  width: 200px;
}
.new-footer-logo img {
  width: 100%;
}
.new-footer-menu-listing {
  padding: 0;
  margin: -10px -44px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.new-footer-menu-listing li {
  padding: 10px 44px;
}

.new-footer-menu-listing li a {
  color: #011428;
  font-size: 14px;
}
.new-footer-menu-listing li a:hover {
  text-decoration: underline !important;
}
.new-footer-btm {
  text-align: center;
  padding: 48px 0 35px;
  border-top: 2px solid var(--white);
}

.new-footer-btm p {
  font-size: 14px;
  color: #2d2d2d;
}
.new-footer-btm p a {
  color: #2d2d2d;
}
.new-footer-btm p a:hover {
  color: var(--themeBlue);
}
.direct-toegang-video-fancybox {
  width: 520px;
  border-radius: 15px;
}
.direct-toegang-video-fancybox input[type="text"],
.direct-toegang-video-fancybox input[type="email"] {
  font-size: 16px !important;
  height: 50px !important;
  background-color: var(--white) !important;
  border: 1px solid #e4e4f2 !important;
  padding: 0 16px !important;
  border-radius: 4px !important;
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -ms-border-radius: 4px !important;
  -o-border-radius: 4px !important;
}
.direct-toegang-video-fancybox input[type="text"] {
  background: url(images/name2.webp) no-repeat right 12px center;
  padding-right: 50px !important;
  background-size: 20px;
}
.direct-toegang-video-fancybox input[type="email"] {
  background: url(images/email2.webp) no-repeat right 12px center;
  padding-right: 50px !important;
  background-size: 20px;
}
.direct-toegang-video-fancybox input[type="text"]:focus,
.direct-toegang-video-fancybox input[type="email"]:focus {
  border-color: var(--themeBlue) !important;
}
.direct-toegang-video-fancybox .gform-theme--foundation .gform_fields {
  row-gap: 20px;
}
.direct-toegang-video-fancybox input[type="submit"] {
  /*width: 100% !important;
  */height: 52px !important;
  font-size: 16px !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  color: var(--white) !important;
  background-color: var(--yellow) !important;
  border-radius: 4px !important;
  padding: 5px 39px !important;
  min-width: 201px !important;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -ms-border-radius: 4px !important;
  -o-border-radius: 4px !important;
  transition: all .3s ease-in-out !important;
  -webkit-transition: all .3s ease-in-out !important;
  -moz-transition: all .3s ease-in-out !important;
  -ms-transition: all .3s ease-in-out !important;
  -o-transition: all .3s ease-in-out !important;
}
.direct-toegang-video-fancybox .gform-footer {
  justify-content: center;
}
.direct-toegang-video-fancybox input[type="submit"]:hover {
  background-color: var(--themeBlue) !important;
    color: var(--white) !important;
}

/* 15-05-2025 M.M Css Start */

/* 19-05-2025 S.Mv Css Start */
  .bitcoin-form-wrap p{
      font-weight: 400;
      font-size: 19px;
      text-align: center;
      color:var(--white);
  }

  .bitcoin-form-wrap .gform_wrapper  .gform_fields{
    column-gap:0px;
    row-gap:26px;
    text-align:left;
  }
  .bitcoin-form-wrap .gform_wrapper input[type="text"],.bitcoin-form-wrap .gform_wrapper input[type="email"]{
    height:41px;
    background-color:transparent;
    border:0;
    outline:none;
    border-bottom:1px solid #948FFF;
    font-size:18px;
    display:block;
    border-radius:0;
    padding:0;
    color: #EFF2F7;
  }
  .bitcoin-form-wrap .gform_wrapper input[type="text"]::placeholder,.bitcoin-form-wrap .gform_wrapper input[type="email"]::placeholder{
    color: #EFF2F7;
  }

  .bitcoin-form-wrap .gform_wrapper input[type="submit"]{
    width:100% !important;
    background-color:var(--yellow) !important;
    padding:18px !important;
    font-size:16px !important;
    font-weight:400 !important;
    color: var(--white) !important;
    height:60px;
    border:0!important;
    border-radius:5px;
    transition:0.5s !important;
  }
  .bitcoin-form-wrap .gform_wrapper input[type="submit"]:hover{
    background-color:var(--white) !important;
    color:var(--yellow) !important;
  }
  .gform_validation_errors{
    display:none !important;
  }
  .gfield_validation_message{
    color:#ff380c !important;
  }

  .blog-dtls-col-rgt-bx-outer .blg-dtls-cl-rgt-bx:not(:last-child){
    margin-bottom:30px;
  }

  .blg-dtls-cl-rgt-bx{
    padding:26px 24px 35px;
    border-radius:20px;
    background:var(--white);
    box-shadow: 1px 4px 23.8px 8px rgba(209, 209, 209, 0.25);
    text-align:center;
  }
  .blg-dtls-cl-rgt-bx-upr{
    margin-bottom:23px;
  }
  .blg-dtls-cl-rgt-bx-upr h3 span{
    display:block;
    font-size:19px;
    font-weight:600;
   
    margin-bottom:10px;
  }
  .blg-dtls-cl-rgt-bx-upr h3{
    font-weight:600;
    color:#424242;
  }
  .blg-dtls-cl-rgt-bx-upr p{
    font-size:19px;
    margin-bottom:10px;
  }
  .blg-dtls-cl-rgt-bx-mddl figure{
    padding-top:56%;
    position:relative;
    overflow:hidden;
    border-radius:10px;
    margin-bottom:27px;
  }
  .blg-dtls-cl-rgt-bx-mddl figure img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
  }
.blg-dtls-cl-rgt-bx-mddl-btn .cmn-btn{
  width:100%;
}
.blg-dtls-cl-rgt-bx-lwr{
  padding-top:22px;
}
.blg-dtls-cl-rgt-bx-lwr p{
  font-size:16px;
  margin-bottom:10px;
}
.exclnt-wpr{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  font-weight:400;
  color:#404040;
  line-height:1;
}
.exclnt-wpr .exclnt-lg-txt{
  font-size:23px;
  font-weight:500;
  color:#424242;
  display:inline-block;
  margin-right:15px;
}
.exclnt-wpr .star-icon{
  margin:0 5px 0 10px;
  display:inline-block;
}
.exclnt-wpr .star-icon img{
  max-width:18px;
}
.bitcoin-form-wrap .gform_confirmation_message{
  font-size: 15px !important;
  color: green !important;
  background: #fff !important;
  padding: 11px 27px 5px !important;
  border-radius: 6px !important;
}

/* 19-05-2025 S.Mv Css End */


/* 20-05-2025 S.Mv Css Start */
.navbar-nav > li {
  margin: 0 12px;
}
.login_wrappr {
  padding-left: 22px;
}
.login_wrappr ul {
  padding: 0 0 0 22px;
}
.our-plus-play-wpr .swiper-text-outer .h4-title{
  word-break:break-all;
}
.exclnt-wpr {
    max-width: 200px;
    margin: 0 auto;
}
.star_wrap{
  max-width:230px;
}

/* laguage start */
.language-button img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.language-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.language-item {
  cursor: pointer;
}
.language-wpr{
  position: relative;
  margin-left: 22px;
}
.language-button{
  display: flex;
  align-items: center;
  padding: 5px;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  background-color: #fff;
}
.language-button .language-button-angle {
  margin-left: 10px;
  width: 20px;
  height: 20px;
}
.language-button .language-button-img-wpr{
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0;
  outline: none;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: block;
}
.language-button .language-button-img-wpr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.language-list{
  position: absolute;
  top: 100%;
  right: 0;
  list-style: none;
  padding: 0;
  border-radius: 10px;
  background-color: #fff;
  padding: 10px;
  z-index: 2;
  /* display: none; */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.language-list.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  pointer-events: auto;
  transition: all 0.3s ease-in-out;
}
.language-list li a {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  padding: 5px;
  /* background: #f5f5f5; */
  border-radius: 5px;
}
.language-list li.active a {
  background-color: #eeeeee;
}
.language-list li:not(:last-child) {
  margin-bottom: 5px;
}
.language-list li a span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 0;
  outline: none;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: block;
  margin-right: 5px;
}
.language-list li a span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

}
.langdutch .navbar-nav>li {
  margin: 0 15px;
}
.langdutch .login_wrappr {
  padding-left: 20px;
}

/* laguage end */
.language-button-imgs,
.page-template-home-nl .en-images{
  display: none;
}

.page-template-home-nl .language-button-imgs {
  display: block;
}

/* 20-05-2025 S.Mv Css End */

/* 22-05-2025 S.Mv Css End */
.single-post .blog-dtls-sec-main .blog-dtls-col-left-wrap p > iframe,
.single-blog-nl .blog-dtls-sec-main .blog-dtls-col-left-wrap p > iframe{
  width:100%;
}
.single-post .blog-dtls-sec-main ul,
.single-blog-nl .blog-dtls-sec-main ul{
  list-style:none;
  padding:0;
  margin:0 0 20px;
}
.single-post .blog-dtls-sec-main ul li:not(:last-child),
.single-blog-nl .blog-dtls-sec-main ul li:not(:last-child){
  margin-bottom:10px;
  
}
.single-post .blog-dtls-sec-main ul li,
.single-blog-nl .blog-dtls-sec-main ul li{
  padding-left:20px;
  position:relative;
  line-height:1.1;
  font-size:17px;
}
.single-post .blog-dtls-sec-main ul li:after,
.single-blog-nl .blog-dtls-sec-main ul li:after{
  position:absolute;
  content:'';
  top:3px;
  left:0;
  width:8px;
  height:8px;
  border-radius:50%;
  background-color: #242179;
}
.single-post .blog-dtls-sec-main p,
.single-blog-nl .blog-dtls-sec-main p{
  font-size:17px;
}
.single-post .blog-dtls-sec-main .trusted-wrap,
.single-blog-nl .blog-dtls-sec-main .trusted-wrap{
  padding:45px 30px 5px;
  margin-top:40px;
}
.single-post .blog-dtls-sec-main .trusted-wrap h2,
.single-blog-nl .blog-dtls-sec-main .trusted-wrap h2{
  font-size:32px;
}
.single-post .blog-dtls-sec-main h3,
.single-blog-nl .blog-dtls-sec-main h3{
  font-size:30px;
}
.single-post .blog-dtls-sec-main table,
.single-blog-nl .blog-dtls-sec-main table{
    width: 100%;
    margin-bottom:30px;
    border-collapse: collapse;
    border-radius: 10px !important;
    border-style: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);

}
.single-post .blog-dtls-sec-main table thead tr th:first-child,
.single-blog-nl .blog-dtls-sec-main table thead tr th:first-child{
  border-top-left-radius:10px;
}
.single-post .blog-dtls-sec-main table thead tr th:last-child,
.single-blog-nl .blog-dtls-sec-main table thead tr th:last-child{
  border-top-right-radius:10px;
}
.single-post .blog-dtls-sec-main table thead tr th,
.single-blog-nl .blog-dtls-sec-main table thead tr th{
  background-color:var(--darkBlue);
  padding:14px 22px;
  color:var(--white);
  font-size:20px;
  border-right:1px solid rgba(255,255,255,0.4);
  text-align:center;
}
.single-post .blog-dtls-sec-main table tbody tr td,
.single-blog-nl .blog-dtls-sec-main table tbody tr td{
  text-align:center;
  font-size:17px;
  padding:15px 10px;
  border-right:1px solid rgba(0,0,0,0.2);
}
.single-post .blog-dtls-sec-main table tbody tr:nth-child(even),
.single-blog-nl .blog-dtls-sec-main table tbody tr:nth-child(even){
  background-color:#e1e1e1b3;
}
.single-post .blog-dtls-sec-main table tbody tr td:last-child,.single-post .blog-dtls-sec-main table thead tr th:last-child,
.single-blog-nl .blog-dtls-sec-main table tbody tr td:last-child,.single-post .blog-dtls-sec-main table thead tr th:last-child{
  border:0;
}


/* 22-05-2025 S.Mv Css End */

/* support starts 26.05.2025  */
.page-template-home-nl .navbar-nav > li > a {
  font-size: 14px;
}
.page-template-home-nl .login_wrappr li a.yellow_btn {
  font-size: 14px;
}
.page-template-home-nl .yellow_btn {
  padding: 19px 16px;
  min-width: 180px;
}
.page-template-home-nl .navbar-nav > li {
  margin: 0 10px;
}
.page-template-home-nl .navbar-brand {
  max-width: 200px;
}
.language-button .language-button-img-wpr {
  flex: 0 0 auto;
}
.page-template-home-nl .login_wrappr {
  padding-left: 15px;
}
.page-template-home-nl .login_wrappr li {
  padding: 0 10px;
}
.page-template-home-nl .login_wrappr li a {
  font-size: 14px;
}
.ty-interest-wpr .yellow_btn img {
  width: 18px;
  height: 18px;
}
#loader>img{max-width: 100px;}
/* support ends 26.05.2025  */

/* ========== responsive css =========== */

@media (min-width: 1025px) {
  /* navbar*/
  .navbar-nav .clickD {
    display: none;
  }

  .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1440px) {
  .container.large {
    max-width: 1430px;
  }

  /* S.Mv Css Start 20-05-25 */
  .container.large {
    max-width: 1480px;
  }

 /* S.Mv Css Start 20-05-25 */
}

@media (max-width: 1499px) {
  .bnnr-video-wrapper,
  .video_main {
    margin-right: -100px;
  }

  .swiper-out {
    margin-right: -180px;
  }

  /* Support start 08-05-2025 */

  .carg-head-txt {
    font-size: 16px;
  }

  .carg-col-list li a {
    font-size: 16px;
  }

  .carg-col-list li {
    margin-bottom: 17px;
  }

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

  .pro-head h3 {
    font-size: 20px;
  }

  .product-card:hover .pro-btn {
    padding: 18px;
  }

  .pro-btn {
    padding: 18px 18px 18px 0;
  }

  .pro-btn span {
    width: 32px;
    margin-left: 8px;
  }

  .carg-col-left {
    width: 22%;
  }

  .carg-col-rgt {
    width: 78%;
  }

  .inner-bnr-cont {
    max-width: 980px;
  }

  /* Support end 08-05-2025 */

  /* Support start 09-05-2025 */

  .bitcoin-form-wrap {
    padding: 27px 20px;
  }

  .bitcoin-form-wrap h3 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .bitcoin-form-wrap p {
    font-size: 16px;
  }

  .blog-dtls-col-left-wrap > p {
    font-size: 16px;
  }

  .trusted-wrap h2 {
    font-size: 34px;
  }

  .trusted-wrap {
    padding: 50px 40px;
  }

  .cmn-btn {
    padding: 17px 20px;
    min-width: 170px;
  }

  .form-inn input[type="text"],
  .form-inn input[type="email"] {
    font-size: 16px;
  }

  /* Support end 09-05-2025 */
  /* support starts 26.05.2025  */
.page-template-home-nl .navbar-nav > li > a {
  font-size: 13px;
}
.page-template-home-nl .login_wrappr li a {
  font-size: 13px;
}
.page-template-home-nl .navbar-brand {
  max-width: 180px;
}
.page-template-home-nl .login_wrappr ul {
  padding: 0 0 0 12px;
}
.page-template-home-nl .login_wrappr {
  padding-left: 10px;
}
.page-template-home-nl .login_wrappr li a.yellow_btn {
  padding: 13px 10px;
  min-width: 125px;
}
.page-template-home-nl .navbar-nav > li {
  margin: 0 5px;
}
  /* support ends 26.05.2025  */
}


@media (max-width: 1450px) {
  .navbar-nav > li {
    margin: 0 10px;
}
.login_wrappr li a.yellow_btn {
    padding: 19px 16px;
    min-width: 171px;
}
.login_wrappr li {
    padding: 0 10px;
}



}

@media (max-width: 1399px) {
  body {
    font-size: 20px;
  }

  .navbar-brand {
    max-width: 180px;
  }

  .login_wrappr li a.yellow_btn {
    min-width: inherit;
    padding: 12px 20px;
  }

  .login_wrappr li {
    padding: 0 12px;
  }

  .login_wrappr {
    padding-left: 20px;
  }

  .navbar-nav > li {
    margin: 0 18px;
  }

  .login_wrappr ul {
    padding: 0 0 0 24px;
  }

  .bnnr-video-wrapper,
  .video_main {
    margin-right: 0px;
  }

  .what_do_img_outtr {
    padding-right: 90px;
    margin-left: -10px;
  }

  .what_do_item {
    right: 0px;
  }

  .trackrecord_info h3 {
    font-size: 28px;
  }

  .trackrecord_info {
    margin-bottom: 10px;
  }

  .bnner_sec {
    padding-top: 80px;
  }

  h2,
  .h2-title {
    font-size: 44px;
  }

  h4,
  .h4-title {
    font-size: 20px;
  }

  .no-tech-card {
    padding: 0 30px;
  }

  .our-plus-hero .swiper-container {
    padding-bottom: 50px;
  }

  .live-result-clm-rt-inn {
    padding-left: 0;
    padding-right: 55px;
    margin-right: -20px;
  }

  .our-plus-play-sec .large_txt {
    left: 0;
  }

  .team-mem-dtls .designation {
    font-size: 17px;
  }

  .intro-left-img::after {
    left: 0;
  }

  .facility-video-wrp {
    padding-left: 100px;
  }

  .large_txt {
    font-size: 5vw;
  }

  .no-tech-flex {
    margin: 0 -30px 60px;
  }

  .inner-bnr-cont {
    max-width: 850px;
  }


  /* 20-05-2025 S.Mv Css Start */
  .language-wpr {
    margin-left: 10px;
  }
  .language-button .language-button-img-wpr {
    flex-shrink: 0;
}
.language-button .language-button-angle {
    margin-left: 2px;
}
.login_wrappr ul {
    padding: 0 0 0 10px;
}
.login_wrappr {
    padding-left: 10px;
}
.navbar-brand {
    max-width: 130px;
}
.navbar-nav > li {
    margin: 0 9px;
}
.navbar-nav > li > a {
    font-size: 14px;
    letter-spacing:inherit;
}
.login_wrappr li a {
    font-size: 14px;
    letter-spacing:inherit;
}
.login_wrappr li a.yellow_btn {
    font-size: 14px;
}


  /* 20-05-2025 S.Mv Css End */


  /* 22-05-2025 S.Mv Css Start */
  .single-post .blog-dtls-sec-main .blog-dtls-col-left-wrap p > iframe,
  .single-blog-nl .blog-dtls-sec-main .blog-dtls-col-left-wrap p > iframe  {
    min-height: 360px;
    height: 100%;
  }
  
  


  /* 22-05-2025 S.Mv Css End */

  /* support starts 26.05.2025  */
  .page-template-home-nl .navbar-brand {
    max-width: 130px;
}
.page-template-home-nl .login_wrappr li a.yellow_btn {
  font-size: 12px;
}
  /* support ends 26.05.2025  */

}

@media (max-width: 1199px) {
  body {
    font-size: 18px;
  }

  .sec-head {
    margin-bottom: 30px;
  }

  .navbar-nav > li > a {
    font-size: 14px;
  }

  .navbar-brand {
    max-width: 150px;
  }

  .navbar-nav > li {
    margin: 0 10px;
  }

  .login_wrappr {
    padding-left: 15px;
  }

  .login_wrappr ul {
    padding: 0 0 0 15px;
  }

  .login_wrappr li {
    padding: 0 10px;
  }

  .bnner_sec {
    padding: 60px 0;
  }

  h1,
  .h1-title {
    font-size: 48px;
  }

  h2,
  .h2-title {
    font-size: 38px;
    line-height: 1.2;
  }

  h4,
  .h4-title {
    font-size: 18px;
  }

  .bnnr_list li:not(:last-child) {
    margin-right: 20px;
  }

  .bnnr_list li {
    font-size: 14px;
  }

  .bnnrTxt_main p {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .yellow_btn {
    padding: 14px 25px;
    min-width: 160px;
  }

  .star_wrap p {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .bnnr_txt_col {
    width: 48%;
  }

  .bnnr_img_col {
    width: 52%;
  }

  .banner-outer .line-circle-position {
    right: 80px;
    bottom: -75px;
  }

  .big_round {
    right: 20%;
    max-width: 65%;
  }

  .bnnr-video-wrapper-outtr::before {
    max-width: 100%;
    height: 80%;
    top: auto;
    left: 0;
    bottom: -30px;
  }

  .this_for_rw {
    --bs-gutter-x: 20px;
  }

  .this_for_wrappr p {
    padding: 0 15px;
  }

  .this_for_wrappr figure {
    height: 160px;
  }

  .this_for_wrappr {
    font-size: 18px;
    height: 100%;
  }

  .cmn_gap {
    padding: 80px 0;
  }

  .what_do_item {
    bottom: -60px;
    right: 0;
    width: 150px;
  }

  .what_do_img_outtr {
    padding-right: 60px;
    margin-left: 0px;
  }

  .dot_sphe {
    left: -20px;
  }

  .dot_sphe_smll {
    right: 10px;
  }

  .half_round {
    bottom: -40px;
    right: 20px;
  }

  .what_do_txt_wrppr > p {
    margin-bottom: 20px;
  }

  .what_do_txt_wrppr li {
    font-size: 18px;
    padding-left: 35px;
  }

  .what_do_txt_wrppr li:not(:last-child) {
    margin-bottom: 12px;
  }

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

  .trackrecord_info .trackrecord_icon {
    width: 46px;
    height: 40px;
    padding: 8px;
  }

  .trackrecord_wrappr > p {
    font-size: 18px;
  }

  .trackrecord_wrappr {
    padding: 15px;
  }

  .trackrecord_rw {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .start_mining_txt_wrp .icon {
    width: 46px;
    height: 40px;
    padding: 10px;
    margin-right: 25px;
  }

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

  .start_mining_txt_wrp {
    padding: 16px 20px;
  }

  .start_mining_sec .sec-head {
    margin-bottom: 35px;
  }

  .no-tech-card {
    padding: 0 20px;
  }

  .swiper-out {
    margin-right: 0;
  }

  .no-tech-flex {
    margin: 0 -20px 50px;
  }

  .swiper-top-icon {
    padding-bottom: 40px;
  }

  .swiper-text-outer {
    padding: 15px 15px 20px;
  }

  .swiper_next {
    right: 0;
  }

  .our-plus-hero {
    margin-bottom: 50px;
  }

  .our-plus-play-sec .large_txt {
    top: auto;
    bottom: 50px;
  }

  .live-result-clm-lft p {
    margin-bottom: 25px;
  }

  .live-result-wpr .line-circle-position {
    bottom: -160px;
  }

  .our-plus-txt.extra {
    padding-top: 45px;
  }

  .client-result-wrp {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
    padding-bottom: 50px;
  }

  .client_about_rw {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .facility-video-wrp {
    padding-left: 60px;
    padding-right: 30px;
  }

  .facility-vdo-inner {
    position: relative;
    width: 100%;
    height: 480px;
  }

  .facility-video::before {
    right: -30px;
  }

  .facility-video::after {
    left: -40px;
  }

  .testimonial-sec {
    padding: 60px 0;
  }

  .testimonial-wrp {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
    margin-bottom: 50px;
  }

  .team-mem-img {
    padding: 8px;
    width: 95px;
    height: 95px;
  }

  .team-mem-dtls {
    width: calc(100% - 95px);
    padding-left: 20px;
  }

  .play-btn {
    width: 115px;
    height: 65px;
  }

  .testi-play::before,
  .testi-play::after {
    font-size: 36px;
  }

  .testimonial-img {
    margin-bottom: 20px;
  }

  .ourteam-card-inner {
    padding: 15px 20px;
  }

  .our-team-cards-wrp {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .intro-sec {
    padding: 80px 0;
  }

  .intro-left-img {
    margin: 0 35px 20px 0;
  }

  .faq-wrp {
    padding: 0;
  }

  .question {
    padding: 20px 15px;
  }

  .faq-wrp .answer {
    padding: 20px 15px 15px;
  }

  .faq-section {
    padding: 60px 0;
  }

  .footer-links li {
    padding: 0 8px;
  }

  .footer-widget {
    padding-bottom: 40px;
  }

  .footer-sec {
    padding: 40px 0 25px;
  }

  /* css start 20-5-24 */
  .innr-banner-sec {
    min-height: 400px;
  }

  .innr-banner-sec .dot_shpe {
    z-index: 0;
    right: 0;
  }

  /* css end 20-5-24 */

  /* css start 21-5-24 */
  .inner-banner-sec {
    min-height: 285px;
  }

  .inner-ban-pt-2 {
    top: -12px;
    max-width: 866px;
  }

  .inner-ban-pt-1 {
    width: 70px;
  }

  .inner-ban-pt-4 {
    bottom: 47px;
  }

  .inner-ban-pt-5 {
    bottom: -86px;
  }

  /* css end 21-5-24 */

  /* css start 3-6-24 */
  .settle-row {
    --bs-gutter-x: 22px;
    --bs-gutter-y: 95px;
  }

  .settle-para p {
    font-size: 22px;
    margin-top: 35px;
  }

  .settle-head {
    padding-bottom: 70px;
  }

  .last-but-blk {
    margin-bottom: 60px;
  }

  .why-do-sect {
    padding: 60px 0;
  }

  /* css end 3-6-24 */
  /* css start 4-6-24 */
  .cmn-crcl-span1 {
    width: 568px;
  }

  .cmn-crcl-span2 {
    width: 150px;
  }

  .we-msn-head {
    font-size: 22px;
  }

  .we-mission {
    padding: 60px 0;
  }

  .we-msn-card i img {
    max-height: 35px;
  }

  .we-msn-card i {
    margin-bottom: 22px;
  }

  .find-parasss p {
    font-size: 20px;
  }

  .why-do-hire {
    padding: 60px 0;
  }

  .meet-real-blkss {
    margin-top: 45px;
    margin-bottom: 45px;
  }

  .meet-real-blkss .rowspan {
    --bs-gutter-x: 35px;
    margin-bottom: 40px;
  }

  .meet-ral-heading {
    font-size: 28px;
    padding-top: 18px;
    margin-bottom: 10px;
  }

  .we-mssn-blk .rowspan {
    --bs-gutter-x: 22px;
    --bs-gutter-y: 22px;
  }

  .why-do-blks h2 {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }

  .mission-head h2 {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .find-parasss {
    margin-bottom: 35px;
  }

  .meet-real {
    padding-top: 60px;
  }

  .last-rit-cont {
    padding-left: 0;
  }

  .cmn-crcl-span3 {
    width: 80px;
  }

  .cmn-crcl-span4 {
    width: 80px;
  }

  .settle-para .settle-head h2 {
    font-size: 30px;
  }

  .settle-para .settle-head {
    margin-bottom: 32px;
  }

  /* css end 4-6-24 */

  /* Support start 08-05-2025 */

  .carg-col-left {
    width: 26%;
  }

  .carg-col-rgt {
    width: 74%;
  }

  .product-col {
    width: 50%;
  }

  .sort-wrap select {
    height: 50px;
    width: 146px;
    background-position: center right 30px;
  }

  .inner-bnr-sec-main {
    padding: 50px 0 110px 0;
    min-height: 370px;
  }

  .inner-bnr-cont p {
    font-size: 16px;
  }

  .cmn-gap {
    padding: 70px 0;
  }

  .inner-bnr-cont {
    max-width: 660px;
  }

  /* Support end 08-05-2025 */

  /* Support Start 09-05-2025 */

  .blog-dtls-col-left {
    width: 62%;
  }

  .blog-dtls-col-rgt {
    width: 38%;
  }

  .trusted-wrap h2 {
    font-size: 30px;
  }

  .sbt-btn input[type="submit"] {
    height: 50px;
  }

  /* Support end 09-05-2025 */


  /* 19-05-2025 S.Mv Css Start */
  .exclnt-wpr .exclnt-lg-txt {
    font-size: 20px;
    margin-right: 10px;
  }
  .blg-dtls-cl-rgt-bx-upr h3 {
    font-size: 24px;
    margin-bottom:15px;
  }
  .blg-dtls-cl-rgt-bx-upr p {
    font-size: 16px;
}


  /* 19-05-2025 S.Mv Css End */


  /* 20-05-2025 S.Mv Css Start */
  .navbar-brand {
    max-width: 130px;
  }
  .navbar-nav > li > a {
    font-size: 12px;
}
.login_wrappr li a {
  font-size: 12px;
  letter-spacing: inherit;
}
.login_wrappr li a.yellow_btn {
  font-size: 12px;
}
.login_wrappr li {
  padding: 0 5px;
}




/* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;
    margin-left: 15px;
    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: var(--darkBlue);
    position: absolute;
    left: 0;
    top: auto;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: "";
    top: -10px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 10px;
    left: 0;
  }

  .stick.open {
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    transform: rotate(45deg) translate(42px, -28px);
    left: 2px;
  }

  .stick.open:after {
    transform: rotate(-45deg) translate(42px, 28px);
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu > li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .sub-menu,
  .navbar-nav > li > .sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav > li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav > li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav > li > a {
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
  }

  .navbar-nav li.menu-item-has-children > a {
    padding-right: 30px;
  }

  .sub-menu > li > a {
    padding-left: 40px;
  }

  .sub-menu .sub-menu > li > a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu > li > a {
    padding-left: 80px;
  }

  .navbar-nav > li > a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: #fff;
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0;
    /* padding: 0 0 40px 0; */
    padding: 0 0 8px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    /* height: 100%; */
    overflow: hidden;
  }

      .navbar-expand-lg .navbar-toggler {
        display:block;
    }

  /* push nav end */

  .login_wrappr{
    margin-left:auto;
  }
  .login_wrappr ul {
    padding: 0;
  }
  .login_wrappr ul::before{
    display:none;
  }
  .login_wrappr li a {
    font-size: 16px;
}
.login_wrappr li a.yellow_btn {
    font-size: 16px;
}

.navbar-expand-lg .navbar-nav {
    flex-direction: column;
}
.navbar-nav > li > a {
    font-size: 16px;
}

.login_wrappr {
  margin-left: 0;
  padding-left: 20px;
}

.login_wrappr ul {
    flex-direction: column;
    align-items: flex-start;
}
.login_wrappr li {
  padding: 0;
}
.login_wrappr li:not(:last-child) {
  margin-bottom: 16px;
}

.nav-right-wraper-uniq {
    display: flex;
    align-items: center;
    margin-left: auto;
}


  /* 20-05-2025 S.Mv Css End */

  /* supports starts 26.05.2025  */
  .page-template-home-nl .navbar-nav > li > a {
    font-size: 16px;
}
.page-template-home-nl .login_wrappr li a {
  font-size: 16px;
}
.page-template-home-nl .login_wrappr li a.yellow_btn {
  font-size: 16px;
}
.page-template-home-nl .login_wrappr li {
  padding: 0;
}
.page-template-home-nl .navbar-nav > li {
  margin: 0;
}
.page-template-home-nl .login_wrappr {
  padding-left: 20px;
}
.page-template-home-nl .login_wrappr ul {
  padding: 0;
}
  /* supports ends 26.05.2025  */
}

@media (max-width: 1024px) {
  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 17px;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 10px;
    cursor: pointer;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu > li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .sub-menu > li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navbar-nav > li.menu-item-has-children {
    padding-right: 20px;
  }

  .sub-menu > li.menu-item-has-children > a {
    padding-right: 20px;
  }

  .sub-menu.show {
    display: block;
  }

  /* .navbar-nav > li{
        padding-top: 15px;
        padding-bottom: 15px;
    } */

  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:after,
  .navbar-nav > li.menu-item-has-children > a:after {
    width: 100%;
    opacity: 0;
  }

  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:hover:after,
  .navbar-nav > li.menu-item-has-children:hover > a:after {
    width: 100%;
    opacity: 1;
  }

  /* navbar end*/
}

@media (max-width: 991px) {
  

  .login_wrappr {
    margin-left: auto;
  }

  .bnnr_txt_col,
  .bnnr_img_col {
    width: 100%;
  }

  .bnnrTxt_main {
    margin-bottom: 35px;
  }

  h1,
  .h1-title {
    font-size: 40px;
  }

  h2,
  .h2-title {
    font-size: 32px;
  }

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

  .bnnr_shpe {
    height: 430px;
  }

  .large_txt {
    font-size: 50px;
    right: 0;
    transform: inherit;
    writing-mode: inherit;
    background: linear-gradient(
      180deg,
      #f6f6f6 0%,
      rgba(255, 255, 255, 0) 100%
    );
    background-clip: text;
  }

  .bnnr-video-wrapper-outtr::before {
    display: none;
  }

  .cmn_gap {
    padding: 60px 0;
  }

  .this_for_rw {
    justify-content: center;
  }

  .what_do_img_outtr {
    padding-bottom: 35px;
  }

  .half_round {
    bottom: 0;
  }

  .what_do_item {
    bottom: 0;
    width: 180px;
  }

  .what_do_txt_wrppr > p {
    max-width: 100%;
  }

  .double_round {
    width: 100%;
  }

  .start_mining_txt_wrp {
    margin-left: auto;
    margin-right: auto;
  }

  .start_mining_txt_main {
    margin-bottom: 35px;
  }

  .no-tech-card {
    padding: 0 15px;
    width: 33.33%;
  }

  .no-tech-flex {
    margin: 0 -15px 40px;
  }

  .no-tech-card-inn {
    font-size: 14px;
  }

  .our-plus-play-sec .large_txt {
    top: auto;
    bottom: 20px;
    font-size: 60px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    background: linear-gradient(
      270deg,
      #f6f6f6 0%,
      rgba(255, 255, 255, 0) 100%
    );
    background-clip: text;
  }

  .live-result-clm-lft .live-result-sub-head {
    margin-bottom: 15px;
  }

  .live-result-row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 25px;
  }

  .facility-content {
    max-width: 100%;
  }

  .facility-content .trusted-wrp {
    padding-top: 0;
  }

  .facility-wrp {
    --bs-gutter-y: 25px;
  }

  .play-btn {
    width: 95px;
    height: 50px;
    padding: 8px;
  }

  .testimonial-card-content h3 {
    margin-bottom: 12px;
  }

  .team-mem-dtls h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .team-mem-img {
    width: 80px;
    height: 80px;
  }

  .team-mem-dtls .designation {
    font-size: 14px;
  }

  .ourteam-card-inner {
    padding: 10px 15px;
  }

  .down-icon {
    flex: 0 0 auto;
  }

  .question h3 {
    flex: 1;
    padding-right: 15px;
  }

  .intro-sec {
    padding: 60px 0;
  }

  .footer-links li {
    padding: 0 12px;
  }

  .copyright-links a:not(:last-child) {
    margin-right: 15px;
  }

  .footer-widget {
    padding-bottom: 30px;
  }

  /* css start 20-5-24 */
  .innr-banner-sec {
    min-height: 300px;
  }

  .innr-banner-sec .dot_shpe {
    width: 45px;
  }

  .innr-banner-sec .large_txt {
    font-size: 35px;
  }

  .product-lftss {
    margin-bottom: 35px;
  }

  .product-head h2 {
    font-size: 25px;
  }

  .product-rits-figs img {
    max-height: none;
  }

  .product-rowss p {
    font-size: 14px;
  }

  .product-rowss {
    margin-bottom: 16px;
  }

  .product-head {
    max-width: inherit;
  }

  .product-head h2 br {
    display: none;
  }

  /* css end 20-5-24 */

  /* css start 21-5-24 */
  .inner-ban-pt-2 {
    top: 0;
    max-width: 500px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .inner-ban-pt-1 {
    top: 84px;
  }

  .inner-ban-pt-4 {
    width: 60px;
  }

  .inner-ban-pt-5 {
    bottom: -133px;
    right: 60px;
  }

  /* css end 21-5-24 */

  /* css start 27-5-24 */
  .product-rits-wrapss {
    min-height: auto;
    padding: 45px;
  }

  /* css end 27-5-24 */

  /* css start 3-6-24 */
  .last-but-blk-btm .colspan-lft {
    width: 100%;
  }

  .last-but-blk-btm .colspan-rit {
    width: 100%;
  }

  .last-sec-fig {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .settle-card h3,
  .why-blk-cards h3 {
    font-size: 18px;
    margin: 14px 0 14px;
  }

  /* css end 3-6-24 */

  /* css start 4-6-24 */
  .last-sec-fig {
    margin-bottom: 0;
    max-width: 277px;
    margin-right: 24px;
  }

  .we-msn-head {
    font-size: 20px;
  }

  .find-parasss p {
    font-size: 15px;
  }

  .meet-ral-heading {
    font-size: 24px;
    padding-top: 15px;
  }

  .settle-para .settle-head h2 {
    font-size: 25px;
  }

  /* css end 4-6-24 */
  .job-category-titel h3 {
    font-size: 20px;
  }

  .job-details-left h4 {
    font-size: 18px;
  }

  .settle-para .yellow_btn {
    font-size: 16px;
  }

  .about-authore-sec .row [class*="col-"]:first-child {
    margin-bottom: 50px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .partner-logo-itm img {
    max-width: 120px;
  }

  .partner-logo-itm:nth-child(2) img {
    max-width: 120px;
  }

  .partner-logo-itm:nth-child(4) img {
    max-width: 75px;
  }

  .partner-logo-itm:nth-child(6) img {
    max-width: 100px;
  }

  .partner-logo-itm:nth-child(8) img {
    max-width: 105px;
  }

  .partner-logo-itm:nth-child(7) img {
    max-width: 145px;
  }

  .partner-logo-itm {
    padding: 15px 22px;
  }

  /* Support start 08-05-2025 */

  .carg-col-left {
    width: 40%;
  }

  .carg-col-rgt {
    width: 100%;
  }

  .carg-col-head {
    padding-bottom: 12px;
    margin-bottom: 18px;
  }

  .carg-col-left-wrap {
    border-radius: 10px;
  }

  .sort-wrap {
    width: 20%;
  }

  .carg-head-txt {
    width: 80%;
  }

  .cmn-gap {
    padding: 60px 0;
  }

  .inner-bnr-cont {
    max-width: 540px;
  }

  .inner-bnr-sec-main {
    min-height: 310px;
  }

  /* Support end 08-05-2025 */

  /* Support start 09-05-2025 */

  .blog-dtls-col-left {
    width: 100%;
  }

  .blog-dtls-col-rgt {
    width: 100%;
  }

  .user {
    width: 58px;
    height: 58px;
  }
  /* Support end 09-05-2025 */

  /* optin-section css start */
  .optin-section-left figure {
    max-width: 270px;
  }

  .optin-section-right ul li {
    font-size: 17px;
  }

  .optin-section-heading h1 {
    font-size: 28px;
  }

  /* optin-section css end */
  /* 15-05-2025 M.M Css Start */
  .new-footer-right,
  .new-footer-left {
    width: 100%;
  }
  .new-footer-right {
    text-align: center;
  }
  .new-footer-menu-listing {
    justify-content: center;
  }
  .new-footer-menu-listing li {
    padding: 10px 20px;
  }
  .new-footer-btm {
    padding: 30px 0 18px;
  }
  /* 15-05-2025 M.M Css End */


  /* S.Mv Css Start 19-05-25 */
  .bitcoin-form-wrap .gform_wrapper input[type="text"], .bitcoin-form-wrap .gform_wrapper input[type="email"] {
    font-size: 16px;
}
  /* S.Mv Css End 19-05-25 */

  /* 20-05-2025 S.Mv Css Start */
  .login_wrappr ul {
    padding: 0;
  }
  .login_wrappr ul::before{
    display:none;
  }
  .login_wrappr li a {
    font-size: 16px;
  }
  .login_wrappr li a.yellow_btn {
    font-size: 16px;
  }
  .login_wrappr li {
    padding: 0 10px;
}
  .dot_shpe {
    right: -13px;
  }

.login_wrappr li {
  padding: 0;
}


  /* 20-05-2025 S.Mv Css End */


}

@media (max-width: 767px) {
  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  h1,
  .h1-title {
    font-size: 36px;
  }

  h2,
  .h2-title {
    font-size: 30px;
  }

  body {
    font-size: 16px;
  }

  .no-tech-card {
    padding: 15px 0;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #dfdfdf;
  }

  .no-tech-flex {
    margin: -15px 0 40px;
  }

  .no-tech-card-inn {
    max-width: 100%;
    font-size: 16px;
  }

  .our-plus-hero .all_wrappr > .swiper-scrollbar {
    max-width: calc(100% - 80px);
  }

  .client-result-wrp {
    justify-content: center;
  }

  .intro-left-img {
    float: inherit;
    width: 100%;
    margin: 0 0 25px;
  }

  .faq-lists li {
    width: 100%;
    padding: 0 !important;
    margin-bottom: 19px;
  }

  .faq-wrp .answer {
    padding: 0 15px 15px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-links li {
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .copyright {
    flex-direction: column;
    justify-content: center;
  }

  .copyright-links {
    margin-left: 0;
    margin-top: 15px;
  }

  .fttr_logo_wrappr {
    max-width: 160px;
    margin: 0 auto 20px;
  }

  .this_for_col,
  .trackrecord_col,
  .client_about_col {
    transition-delay: 0s !important;
  }

  /* css start 20-5-24 */
  .product-rowss p {
    font-size: 14px;
  }

  .product-rowss span {
    font-size: 14px;
    min-width: 136px;
    padding-right: 13px;
  }

  .product-head h2 {
    font-size: 23px;
  }

  .privacy-blk h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .privacy-blk p {
    font-size: 15px;
  }

  /* css end 20-5-24 */

  /* css start 21-5-24 */
  .inner-ban-pt-5 {
    bottom: -150px;
  }

  /* css end 21-5-24 */

  /* css start 4-6-24 */

  .cmn-crcl-span2 {
    width: 100px;
  }

  .last-sec-fig {
    margin-bottom: 30px;
    max-width: inherit;
    margin-right: 0;
  }

  .meet-real-figure {
    margin-bottom: 30px;
  }

  .settle-para {
    padding: 30px 0;
  }

  .settle-para .settle-head {
    margin-bottom: 20px;
  }

  /* css end 4-6-24 */
  .job-details-left {
    width: 100%;
    padding-right: 0px;
  }

  .each-job-wpr-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-details-right {
    width: 100%;
    padding-top: 20px;
  }

  .job-section {
    padding: 30px 0;
  }

  /* Partner css Start   */
  .partner-logo-wraper {
    margin: -5px -8px;
  }

  .partner-logo-itm {
    padding: 5px 8px;
  }

  .partner-logo-itm img {
    max-width: 70px;
  }

  .partner-logo-itm:nth-child(2) img {
    max-width: 70px;
  }

  .partner-logo-itm:nth-child(4) img {
    max-width: 45px;
  }

  .partner-logo-itm:nth-child(6) img {
    max-width: 80px;
  }

  .partner-logo-itm:nth-child(8) img {
    max-width: 75px;
  }

  .partner-logo-itm:nth-child(7) img {
    max-width: 115px;
  }

  /* .partner-logo-itm {
    padding: 15px 42px;
  } */

  /* Partner css End */
  .star_wrap a,
  .trusted-investors a {
    max-width: 180px;
  }

  /* Support start 08-05-2025 */

  .carg-col-left {
    width: 50%;
  }

  .carg-row {
    --bs-gutter-y: 20px;
    --bs-gutter-x: 20px;
  }

  .pro-head h3 {
    font-size: 18px;
  }

  .product-card:hover .pro-btn {
    padding: 14px 16px;
  }

  .pro-btn {
    padding: 14px 16px 14px 0;
  }

  .inner-bnr-cont h1 {
    margin-bottom: 14px;
  }

  .inner-bnr-sec-main {
    min-height: 280px;
    padding: 40px 0;
  }

  .carg-head-txt {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .sort-wrap {
    width: 100%;
  }

  .product-row {
    --bs-gutter-y: 18px;
    --bs-gutter-x: 18px;
  }

  .bnr-shape {
    display: none;
  }

  /* Support end 08-05-2025 */

  /* Support start 09-05-2025 */

  .user {
    width: 52px;
    height: 52px;
    margin-right: 8px;
  }
  .inner-bnr-cont p {
    font-size: 15px;
  }

  .trusted-wrap h2 {
    font-size: 26px;
  }
  .trusted-wrap {
    padding: 28px;
  }
  .cmn-btn {
    padding: 14px 18px;
    min-width: inherit;
  }
  .bitcoin-form-wrap h3 {
    font-size: 25px;
    margin-bottom: 14px;
  }
  .form-row {
    --bs-gutter-y: 18px;
  }

  /* Support end 09-05-2025 */

  /* optin-section css start */

  .optin-section-right ul li {
    font-size: 16px;
  }

  .optin-section-heading h1 {
    font-size: 24px;
  }

  .optin-section .row {
    --bs-gutter-y: 30px;
  }

  .optin-section-heading {
    text-align: center;
    margin-bottom: 30px;
  }

  .ty-section-header h1.h3-title {
    font-size: 28px;
    margin: 0 0 15px;
  }
  .ty-section-header p {
    font-size: 18px;
  }
  .ty-interest-wpr {
    padding: 40px 35px;
  }

  /* optin-section css end */
  /* 15-05-2025 M.M Css Start */
  .direct-toegang-video-fancybox {
    padding: 45px 30px 25px;
}
  /* 15-05-2025 M.M Css End */


  /* 20-05-2025 S.Mv Css Start */
  .dot_shpe {
    width: 76px;
    bottom: 45px;
  }
  .large_txt {
    font-size: 40px;  
  }

  /* 20-05-2025 S.Mv Css End */


  .single-post .blog-dtls-sec-main .table-wpr,
  .single-blog-nl .blog-dtls-sec-main .table-wpr{
    overflow:auto;
    padding-bottom:15px;
    margin-bottom:20px;
  }
  .single-post .blog-dtls-sec-main .table-wpr table,
  .single-blog-nl .blog-dtls-sec-main .table-wpr table{
    width:400px;
  }

  .single-post .blog-dtls-sec-main p, .single-blog-nl .blog-dtls-sec-main p {
    font-size: 16px;
}
}

@media (max-width: 575px) {
  /* css start 20-5-24 */
  .product-head h2 {
    font-size: 20px;
  }

  /* css end 20-5-24 */
  .each-job-wpr {
    padding: 15px;
  }

  .job-tag-list li span {
    font-size: 14px;
  }

  .job-tag-list li {
    margin-right: 10px;
    padding-right: 10px;
  }

  .about-authore-sec .row [class*="col-"]:first-child {
    margin-bottom: 35px;
  }

  /* Support start 08-05-2025 */

  .pro-cont {
    font-size: 14px;
  }

  .product-card {
    padding: 14px 12px 24px 12px;
  }

  /* Support end 08-05-2025 */

  /* optin-section css start */
  .ty-interest-wpr .yellow_btn {
    font-size: 16px;
  }
  .ty-section-header h1.h3-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .cmn_gap.ty-section {
    padding-top: 40px;
  }
  .ty-section-header p {
    font-size: 16px;
  }
  .ty-interest-wpr h2 {
    font-size: 20px;
  }

  /* optin-section css end */
  .direct-toegang-video-fancybox {
    width: 100%;
}
.direct-toegang-video-fancybox {
  padding: 50px 15px 25px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
} 
.direct-toegang-video-fancybox input[type="submit"]{
  padding: 5px 18px !important;
  height: 48px !important;
  width: 100% !important;
}
.direct-toegang-video-fancybox input[type="text"], .direct-toegang-video-fancybox input[type="email"] {
  height: 48px !important;
}


  /* 20-05-2025 S.Mv Css Start */
  .large_txt {
    font-size: 34px;
  }
  .dot_shpe {
    width: 52px;  
  }

  /* .login_wrappr li a {
    font-size: 12px;
  }
  .login_wrappr li {
    padding: 0 4px;
  } */
  .login_wrappr li a.yellow_btn {
    /* font-size: 12px; */
    padding: 12px 10px;
}
.login_wrappr li {
  padding: 0;
}

  /* 20-05-2025 S.Mv Css End */

   /* S.Mv Css Start 22-05-25 */
 .single-post .blog-dtls-sec-main h3 ,
 .single-blog-nl .blog-dtls-sec-main h3 {
    font-size: 24px;
}
.single-post .blog-dtls-sec-main .blog-dtls-col-left-wrap p > iframe ,
.single-blog-nl .blog-dtls-sec-main .blog-dtls-col-left-wrap p > iframe {
    min-height: 230px;
}
.single-post .blog-dtls-sec-main ul li:after,
.single-blog-nl .blog-dtls-sec-main ul li:after  {
    width: 6px;
    height: 6px;
}
.single-post .blog-dtls-sec-main ul li ,
.single-blog-nl .blog-dtls-sec-main ul li{
    padding-left: 15px;
}
.single-post .blog-dtls-sec-main .trusted-wrap h2,
.single-blog-nl .blog-dtls-sec-main .trusted-wrap h2 {
    font-size: 22px;
}

  /* S.Mv Css Ebd 22-05-25 */

/* support starts 26.05.2025  */
.star_wrap .trustpilot-widget,
.trusted-investors .trustpilot-widget {
  width: 75%;
}
.star_wrap {
  max-width: 230px;
}
.our-plus-txt .star_wrap,
.our-plus-txt .star_wrap .trustpilot-widget,
.client-result-sec .trusted-investors .trustpilot-widget,
.testimonial-sec .star_wrap-in .trustpilot-widget,
.simplest-way-sec .trustpilot-widget{
  margin: 0 auto;
}
.client-result-sec .trusted-investors .trustpilot-widget{
  width: 50%;
}
.client-result-sec .trusted-investors .trustpilot-widget {
  width: 40%;
}
.facility-sec .trustpilot-widget{
  width: 70%;
}
.simplest-way-sec .trustpilot-widget{
  width: 40%;
}
.single-post .blog-dtls-sec-main p, .single-blog-nl .blog-dtls-sec-main p {
  font-size: 15px;
}
/* support ends 26.05.2025  */

}

@media (max-width: 479px) {
  body {
    font-size: 14px;
  }

  .login_wrappr ul::before {
    display: none;
  }

  .login_wrappr li {
    padding: 0 12px;
  }

  /* .login_wrappr li a.yellow_btn {
    padding: 10px 15px;
    font-size: 12px;
  }

  .login_wrappr li a {
    font-size: 14px;
  } */

  /* .navbar-brand .mobile_img {
        display: block;
    }
    .navbar-brand .desktp_img {
        display: none;
    } */
  .navbar-brand {
    max-width: 145px;
  }

  .big_round {
    right: 0;
    max-width: 100%;
  }

  .bnnr_list li:not(:last-child) {
    margin-right: 15px;
  }

  .bnnr_list li {
    margin-bottom: 15px;
  }

  .bnnr_list {
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .bnner_sec {
    padding: 40px 0;
  }

  /* .login_wrappr {
    padding-left: 0;
  } */

  .login_wrappr ul {
    padding: 0;
  }

  h1,
  .h1-title {
    font-size: 32px;
    line-height: 1.4;
  }

  h2,
  .h2-title {
    font-size: 26px;
  }

  .cmn_gap {
    padding: 40px 0;
  }

  .sec-head {
    margin-bottom: 25px;
  }

  .title-line {
    padding-bottom: 15px;
  }

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

  .bnnrTxt_main p {
    font-size: 12px;
  }

  .line-circle-anim.reveal .amin-line.play-reveal {
    height: 51px;
  }

  .line-circle-anim .amin-circle {
    top: 51px;
  }

  .line-circle-anim {
    height: 70px;
  }

  .banner-outer .line-circle-position {
    right: 0px;
    bottom: -30px;
  }

  .bnnr_shpe img {
    object-fit: contain;
  }

  .bnnr_shpe {
    height: 100%;
  }

  .dot_shpe {
    mix-blend-mode: multiply;
    bottom: 0;
  }

  .bnner_sec .large_txt {
    bottom: auto;
    top: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(255, 255, 255, 0) 100%
    );
    background-clip: text;
  }

  .yellow_btn {
    padding: 10px 20px;
    min-width: 130px;
    font-size: 14px;
  }

  .this_for_wrappr {
    font-size: 16px;
  }

  .this_for_wrappr figure {
    height: auto;
    margin-bottom: 15px;
  }

  .what_do_img_outtr {
    padding-bottom: 25px;
    padding-right: 30px;
    margin-bottom: 25px;
  }

  .dot_sphe_smll {
    right: 0;
  }

  .half_round {
    bottom: 0;
    width: 60%;
    right: 0;
  }

  .what_do_item {
    width: 30%;
  }

  .what_do_txt_wrppr li {
    font-size: 14px;
    padding-left: 30px;
  }

  .what_do_txt_wrppr li::before {
    width: 20px;
    height: 20px;
    top: 1px;
  }

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

  .trackrecord_wrappr > p {
    font-size: 16px;
  }

  .start_mining_txt_wrp .icon {
    margin-right: 15px;
  }

  .start_mining_txt_wrp p {
    font-size: 14px;
  }

  .video_play_btnn {
    width: 80px;
    height: 40px;
  }

  .cmnSwiper_arrw {
    width: 30px;
    height: 30px;
    padding: 5px;
    bottom: -15px;
  }

  .no-tech-flex {
    margin: -15px 0 20px;
  }

  .our-plus-hero .swiper-container {
    padding-bottom: 35px;
  }

  .our-plus-hero {
    margin-bottom: 40px;
  }

  .live-result-clm-rt-inn {
    padding-right: 35px;
    margin-right: 0;
  }

  .live-abs-1 {
    bottom: 0;
  }

  .live-result-clm-lft .live-result-sub-head {
    font-size: 12px;
  }

  .live-result-clm-lft h2 {
    margin-bottom: 15px;
  }

  .live-result-clm-lft p {
    margin-bottom: 15px;
  }

  .live-result-wpr .line-circle-position {
    bottom: -60px;
    pointer-events: none;
  }

  .our-plus-txt.extra {
    padding-top: 25px;
  }

  .client-result-sec {
    padding: 40px 0;
  }

  .client-result-wrp {
    padding-bottom: 30px;
  }

  .client-result-outer .line-circle-position {
    bottom: -20px;
  }

  .facility-video-wrp {
    padding-left: 15px;
    padding-right: 15px;
  }

  .facility-video::before {
    right: 0;
  }

  .facility-video::after {
    left: 0;
  }

  .trusted-investors p {
    font-size: 12px;
  }

  .client-result-img-wrp {
    width: 50%;
  }

  .facility-outer .line-circle-position {
    bottom: -60px;
  }

  .testimonial-sec {
    padding: 40px 0;
  }

  .play-btn img {
    width: 24px;
    height: 30px;
  }

  .testimonial-wrp {
    margin-bottom: 30px;
  }

  .testimonial-outer .line-circle-position {
    bottom: -70px;
  }

  .faq-section {
    padding: 40px 0;
  }

  .footer-links li a,
  .copyright p,
  .copyright p a,
  .copyright-links a {
    font-size: 14px;
  }

  .footer-widget {
    padding-bottom: 20px;
  }

  .copyright-links {
    margin-top: 10px;
  }

  .copyright p {
    text-align: center;
  }

  .swiper-text-outer p {
    font-size: 14px;
  }

  .swiper-top-icon {
    padding-bottom: 30px;
  }

  .our-plus-play-wpr .line-circle-position {
    right: 0;
    bottom: 0;
    width: 47px;
  }

  .login_wrappr li {
    padding: 0 5px;
  }

  .login_wrappr li a.yellow_btn {
    padding: 7px;
    font-size: 12px;
  }

  .navbar-toggler {
    width: 20px;
    margin-left: 10px;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 20px;
  }

  .stick:before {
    top: -7px;
  }

  .stick:after {
    top: 7px;
  }

  .navbar-collapse .navbar-toggler.open {
    width: 33px;
  }

  .navbar-toggler.open .stick,
  .navbar-toggler.open .stick:after,
  .navbar-toggler.open .stick:before {
    width: 33px;
  }

  .navbar-toggler.open .stick:after {
    top: 10px;
  }

  .navbar-toggler.open .stick:before {
    top: -10px;
  }

  /* css start 30-5-24 */
  .products-listing-blks .this_for_wrappr figure {
    padding: 80px;
  }

  /* css end 30-5-24 */

  /* css start 3-6-24 */
  .why-do-sect {
    padding: 60px 0;
  }

  /* css end 3-6-24 */
  /* css start 4-6-24 */
  .we-mission,
  .why-do-hire {
    padding: 40px 0;
  }

  .find-parasss p {
    font-size: 14px;
  }

  .meet-real {
    padding-top: 40px;
  }

  .settle-para .settle-head h2 {
    font-size: 24px;
  }

  /* css end 4-6-24 */
  /* .partner-logo-itm {
    width: 44.33%;
    padding: 10px 20px;
  } */
  .star_wrap a,
  .trusted-investors a {
    max-width: 140px;
  }

  /* Support Start 08-05-2025 */

  .carg-col-left {
    width: 100%;
  }

  .product-col {
    width: 100%;
  }

  .cmn-gap {
    padding: 40px 0;
  }

  .sort-wrap select {
    height: 48px;
    width: 136px;
  }

  .carg-col-head h2 {
    font-size: 20px;
  }

  .inner-bnr-cont h1 {
    line-height: 1.2;
  }

  /* Support end 08-05-2025 */

  /* Support start 09-05-2025 */

  .user-txt {
    align-items: flex-start;
    flex-direction: column;
  }

  .user-txt p {
    border-right: none;
  }

  .trusted-wrap {
    padding: 18px;
  }
  .trusted-wrap h2 {
    font-size: 24px;
  }
  .bitcoin-form-wrap h3 {
    font-size: 23px;
  }
  .bitcoin-form-wrap p {
    font-size: 14px;
  }
  .rating-wrap strong {
    margin-right: 8px;
  }
  .rating-wrap p {
    font-size: 13px;
    padding: 0 6px;
  }
  .rating-wrap img {
    width: 14px;
  }
  /* Support end 09-05-2025 */

  /* optin-section css start */

  .optin-section-right ul li {
    font-size: 16px;
  }

  .optin-section-heading h1 {
    font-size: 22px;
  }

  .optin-section .row {
    --bs-gutter-y: 30px;
  }

  .optin-section-heading {
    text-align: center;
    margin-bottom: 30px;
  }

  .optin-section-left figure {
    max-width: 230px;
  }

  .optin-section-left p {
    font-size: 16px;
  }

  .optin-section-left p span {
    font-size: 14px;
  }

  .optin-section-right ul li:not(:last-child) {
    margin-bottom: 20px;
  }

  .langdutch .login_wrappr ul {
    padding: 0;
  }

  .langdutch .login_wrappr {
    padding-left: 5px;
  }

  .cmn_gap.ty-section {
    padding-top: 30px;
  }
  .ty-section-header h1.h3-title {
    font-size: 20px;
  }
  .ty-interest-wpr {
    padding: 25px 20px;
  }
  .ty-interest-wpr .yellow_btn img {
    margin-right: 10px;
  }
  .ty-interest-wpr .yellow_btn {
    font-size: 12px;
    padding: 10px 11px;
  }
  .ty-section-header p {
    font-size: 14px;
  }
  /* optin-section css end */

  /* 15-05-2025 m.m css start */
  .new-footer-top {
    padding: 20px 0 20px;
  }
  .new-footer-logo {
    width: 170px;
  }
  .new-footer-btm {
    padding: 18px 0 18px;
  }
  .new-footer-menu-listing {
    margin: -6px -15px;
  }
  .new-footer-menu-listing li {
    padding: 6px 15px;
  }
  .new-navbar-brand {
    width: 160px;
  }


  /* 19-05-2025 S.Mv Css Start */
  .blg-dtls-cl-rgt-bx-upr h3 span {
    font-size: 16px;
    margin-bottom: 7px;
  }
  .blg-dtls-cl-rgt-bx-upr h3 {
    font-size: 20px;
  }
  .blg-dtls-cl-rgt-bx-upr p {
    margin-bottom: 5px;
  }
  .blg-dtls-cl-rgt-bx-mddl figure {
    border-radius: 6px;
    margin-bottom: 15px;
  }
  .blg-dtls-cl-rgt-bx-lwr p {
    font-size: 14px;
  }
  .exclnt-wpr {
    flex-wrap: wrap;
}
.exclnt-wpr .exclnt-lg-txt {
  margin-right: 0;
  display: block;
  width: 100%;
  margin-bottom: 7px;
}
  /* 19-05-2025 S.Mv Css End */


  .navbar-brand{
    display:block;
  }
  /* .navbar {
    flex-direction: column;
  }
.login_wrappr {
    margin-left: 0;
}
.nav-right-wraper-uniq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
} */
 .login_wrappr li {
  padding: 0;
 }

/* support starts 26.05.2025  */
.star_wrap-in .trustpilot-widget,
.star_wrap .trustpilot-widget{
  width: 65%;
}
.simplest-way-outer .trusted-investors .trustpilot-widget{
  width: 40%;
}
 
/* support ends 26.05.2025  */

}

@media (max-width: 375px) {
  .client-result-img-wrp {
    width: 100%;
  }

  /* .job-tag-list {
    flex-direction: column;
    align-items: flex-start;
  } */

  .job-tag-list li {
    margin-right: 6px;
    padding-right: 6px;
    margin-bottom: 10px;
  }

  .job-tag-list li span {
    font-size: 13px;
  }

  .job-tag-list li:not(:last-child):before {
    display: none;
    /* height: 15px; */
  }

  .settle-para .yellow_btn {
    font-size: 15px;
    padding: 16px 20px;
  }

  .job-details-right .job-apply-btn {
    padding: 8px 13px;
    font-size: 13px;
  }

    /* 20-05-2025 S.Mv Css Start */
    .navbar-brand {
      max-width: 100px;
    }
    /* .login_wrappr li a {
      font-size: 11px;
    }
    .login_wrappr li a.yellow_btn {
      font-size: 10px;
      font-weight: 700;
  } */
    
  
  
    /* 20-05-2025 S.Mv Css End */
}

@media (max-width: 340px) {
  .navbar-brand {
    max-width: 130px;
  }

  .copyright p {
    max-width: 220px;
    text-align: center;
  }

  /* 20-05-2025 S.Mv Css End */
  .navbar-brand {
    max-width: 100px;
  }
  .login_wrappr li {
    padding: 0 2px;
  }



  /* 20-05-2025 S.Mv Css End */
}
