/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");

@font-face {
  font-family: "courier_newregular";
  src: url("../fonts/cour.woff2") format("woff2"),
    url("../fonts/cour.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  background: #fff;
  color: #3e3e3e;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #cf1e55;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #cf1e55;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 25px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #2f323a;
  opacity: 0.7;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}
.back-to-top:hover {
  opacity: 1;
}
.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #1bb1dc;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.container-percent {
  width: 100%;
  padding-right: 7%;
  padding-left: 7%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.modal-backdrop {
  z-index: 5001;
}
.modal {
  z-index: 10000;
}
#header {
  height: auto;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  position: relative;
  transition: all 0.5s;
  z-index: 5000;
  background-color: #fff;
  left: 0;
  top: 0;
  right: 0;
}

#header.header-scrolled,
#header.header-pages {
  padding: 15px 0;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}
#header.header-scrolled {
  position: fixed;
}
#header.header-scrolled #topbar,
#header.header-pages #topbar {
  display: none;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #413e66;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 7px 0;
  max-height: 26px;
}

a.login_bg {
  border: 1px solid #cf1e55;
  color: #ffffff!important;
  border-radius: 4px;
  background-color: #cf1e55;
}
.main-pages {
  margin-top: 60px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
.container {
  position: relative;
}
#intro {
  width: 100%;
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  height: 100vh;
}

#intro .intro-info h1 {
  color: #3e3e3e;
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: normal;
}
#intro .intro-info p {
  color: #3e3e3e;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.4em;
  font-family: "courier_newregular";
}

.simple-video {
  width: 100%;
  height: 100%;
}

.trusted {
  color: #898989;
  font-family: "Open Sans";
  font-size: 12px;
  margin-top: 0.419287%;
}
.trusted a {
  color: #898989;
}

.btn-get-started,
.btn-services {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 17px 34px;
  border-radius: 5px;
  transition: 0.5s;
  color: #ffffff;
  background-color: #cf1e55;
  border: 1px solid #cf1e55;
}

.btn-get-started:hover,
.btn-services:hover {
  /*background: rgba(85, 195, 255, 1) !important;*/
  background: #333333 !important;
  border-color: #333333 !important;
  color: #fff !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
  margin: 0 4px;
}

.main-nav a {
  display: block;
  position: relative;
  color: #898989;
  padding: 8px 13px;
  transition: 0.3s;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: normal;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #cf1e55;
  text-decoration: none;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #065e77;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #1bb1dc;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(85, 195, 255, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #8dc2fa;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #065e77;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 38, 70, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Section with background
--------------------------------*/

.section-bg {
  background: #f5f8fd;
}

/* About Us Section
--------------------------------*/

#about {
  padding-top: 2.87443%;
  padding-bottom: 60px;
  background: #f7f7f7;
}
.pnl-box {
  border-bottom: 2px solid #e1e1e1;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.iconWith-text {
  display: flex;
  align-items: center;
}
.icon-size {
  font-size: 18px;
}

.iconWith-text i {
  position: relative;
  margin-right: 13px;
}

.text-size {
  font-size: 32px;
  font-weight: 600;
}

.font-style1 {
  line-height: 1.5em;
  font-size: 16px;
  color: rgb(106, 106, 106);
}

.icon-color1 {
  color: #1ce3ff;
}
.icon-color2 {
  color: #fff119;
}
.icon-color3 {
  color: #1c66ff;
}
.icon-color4 {
  color: #9b4aff;
}
.icon-color5 {
  color: #02c39a;
}
.icon-color6 {
  color: #ff1cf6;
}
.icon-color7 {
  color: #ff7e79;
}
.icon-color8 {
  color: #811cff;
}
.icon-color9 {
  color: rgba(139, 221, 89, 1);
}

.icon-color10 {
  color: rgba(255, 126, 121, 1);
}
.hashing {
  padding-top: 50px;
}
.hashing h2 {
  font-weight: 600;
  font-size: 30px;
  color: #3e3e3e;
  margin-bottom: 40px;
}

.hashing p {
  font-size: 16px;
  color: #3e3e3e;
  line-height: 1.4rem;
  font-family: "courier_newregular";
  font-weight: normal;
}

.icon-size2 {
  font-size: 30px;
}
.hashing i {
  position: relative;
  margin-right: 25px;
}

.watchVdo i {
  color: #3e3e3e;
  position: relative;
  margin-right: 10px;
  top: 1px;
}
.watchVdo a {
  color: #cf1e55;
  font-size: 16px;
}
.newModal {
  height: 100vh;
}
.newModal .modal-dialog {
  width: 940px;
  max-width: initial !important;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}
.newModal .modal-dialog .modal-content {
  padding: 50px;
  background: #fff;
  border-radius: 0;
  border: none;
  position: relative;
  max-height: 95vh;
  overflow-y: auto;
}
.newModal .close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99999;
  padding: 10px 13px;
  font-size: 30px;
  color: #3e3e3e;
  background: #f7f7f7;
}

.videoFrame iframe {
  width: 100%;
}

.videoFrame h4 {
  color: #cccccc;
  font-size: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e1e1e1;
}
.videoFrame h4 i {
  position: relative;
  margin-right: 10px;
}

.boxed-sec {
  padding: 100px 0;
}
.boxed-sec h4 {
  font-size: 26px;
  color: #3e3e3e;
  margin-bottom: 30px;
  font-weight: 300;
}
.pd-all {
  padding: 0 50px;
}
.boxed-sec p {
  font-size: 16px;
  color: #898989;
  font-weight: 300;
  line-height: 1.7em;
  margin-bottom: 40px;
}
.boxed-sec figure {
  text-align: center;
  display: flex;
  justify-content: center;
}
.boxed-sec figure img {
  width: auto !important;
}

.pl-left50 {
  padding-left: 5%;
  position: relative;
}
.pl-left30 {
  padding-right: 14%;
}
.getPaid {
  padding: 100px 0 100px 0;
}
.getPaid h2 {
  font-weight: 600;
  font-size: 30px;
  color: #3e3e3e;
  margin-bottom: 20px;
}
.getPaid p {
  font-size: 16px;
  color: #3e3e3e;
  line-height: 1.4rem;
  font-family: "courier_newregular";
  font-weight: normal;
  margin-bottom: 25px;
}

.gp-complete {
  background: #fbfbfb;
  padding-bottom: 3%;
  padding-top: 3%;
}
.pnl-box2 {
  padding: 50px 35px 40px;
  background: #fff;
  border: 1px solid #e1e1e1;
  height: 100%;
}

.pnl-box2 h2 {
  font-weight: 600;
  font-size: 30px;
  color: #3e3e3e;
  margin-bottom: 40px;
}
.pnl-box2 p {
  font-size: 16px;
  color: #3e3e3e;
  line-height: 1.4rem;
  font-family: "courier_newregular";
}
.pall-img {
  padding: 0 0 40px;
}

.pall-img2 {
  padding: 0 0 40px;
}
.autoWid {
  width: 80%;
}

.whatPeople {
  padding: 100px 0;
}

.coteLine {
  border-left: 5px solid #3e3e3e;
  padding-left: 20px;
  margin-bottom: 25px;
}
.coteLine p {
  line-height: 1.6em;
  font-size: 16px;
  color: #898989;
  letter-spacing: normal;
  font-style: italic;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
}

.coteLine h6 {
  color: #898989;
  font-style: italic;
  line-height: 1.6em;
  font-size: 16px;
  margin-bottom: 0;
  font-family: "Playfair Display", serif;
}

.getPaid i {
  position: relative;
  margin-right: 25px;
}

.pnl-box2 i {
  position: relative;
  margin-right: 25px;
}

.jointhe {
  padding: 200px 0 200px;
  background: #fbfbfb url(../img/fixed.jpg) no-repeat fixed;
  position: relative;
  background-size: cover;
}
.jointhe::before {
  background-color: #fbfbfb;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  z-index: 1;
  position: absolute;
  opacity: 0.5;
}
.container-percent {
  position: relative;
  z-index: 1;
}

.jointhe h2 {
  font-weight: 600;
  font-size: 30px;
  color: #3e3e3e;
  margin-bottom: 40px;
}
.jointhe i {
  position: relative;
  margin-right: 25px;
}
.jointhe p {
  font-size: 16px;
  color: #3e3e3e;
  line-height: 1.4rem;
  font-family: "courier_newregular";
  font-weight: normal;
}
.ringBall {
  width: 430px;
}

.regMember {
  padding: 50px 0;
  background: #fbfbfb;
}
.number_word {
  font-weight: 600;
  font-size: 48px;
  color: #3e3e3e;
  line-height: 1.4em;
  margin-bottom: 10px;
}
.regMember p {
  font-size: 16px;
  color: #3e3e3e;
  line-height: 1.4rem;
  font-family: "courier_newregular";
  font-weight: normal;
}
.size18 {
  font-size: 18px !important;
  /* line-height: 1.6rem !important; */
}
.weCare {
  padding-right: 10%;
}
.weCare h6 {
  color: rgb(137, 137, 137);
  font-size: 14px;
  padding-bottom: 15px;

  margin-bottom: 0;
}
.listUl {
  margin: 0;
  padding: 0;
  list-style: none;
}
.listUl li {
  font-size: 24px;
  color: #3e3e3e;
  padding: 0 0;
  /* border-bottom: 2px solid #e1e1e1; */
}

.listUl li hr {
  margin: 0;
  margin-top: 15px;
  margin-bottom: 15px;
  border: 0;
  border-top: 2px solid #e1e1e1;
}

/* .listUl li:first-child {
  border-top: 2px solid #e1e1e1;
} */

.listUl li i {
  margin-right: 5px;
}

.list-Col1 {
  width: 95%;
}
.list-Col2 {
  width: 90%;
}

.joinBox {
  border: 1px solid #e1e1e1;
  width: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background-color: #fff;
}

/* Frequently Asked Questions Section
--------------------------------*/

#faq {
  padding: 100px 0;
  overflow: hidden;
  background: #fbfbfb;
}
#faq h2 {
  font-weight: 600;
  font-size: 30px;
  color: #3e3e3e;
  margin-bottom: 40px;
}

#faq #faq-list {
  padding: 0;
  list-style: none;
}

#faq #faq-list li {
  margin-bottom: 10px;
  float: left;
  width: 100%;
}

#faq #faq-list a {
  padding: 20px 25px 20px 45px;
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  padding-right: 20px;
  border: 1px solid #e1e1e1;
  background-color: #fff;
  color: #3e3e3e;
  float: left;
  width: 100%;
}

#faq #faq-list i {
  font-size: 16px;
  position: absolute;
  left: 20px;
  top: 20px;
}

#faq #faq-list p {
  margin-bottom: 20px;
}

#faq #faq-list a.collapse {
  color: #1bb1dc;
}

#faq #faq-list a.collapsed {
  color: #3e3e3e;
}

#faq #faq-list a.collapsed i::before {
  content: "\e64b" !important;
}
#faq li div {
  background: #fbfbfb;
  border: 1px solid #e1e1e1;
  border-top: 0;
  background: #f9f9f9;
  float: left;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  line-height: 1.6em;
}

#faq li div ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#faq .collapse p {
  color: #3e3e3e;
  font-size: 16px;
}

.start_earn {
  padding: 100px 0;
}
.start_earn h1 {
  font-weight: normal;
  font-size: 42px;
  color: #3e3e3e;
  margin-bottom: 40px;
}
.start_earn p {
  color: #3e3e3e;
  font-size: 16px;
  line-height: 1.4em;
  font-family: "courier_newregular";
  font-weight: normal;
}
.imgSpin {
  margin-bottom: 30px;
}
.imgSpin img {
  width: 200px;  
}
.joinBox p {
  font-size: 14px;
  line-height: 1.5em;
  color: #3e3e3e;
  margin-bottom: 0;
}
#faq #faq-list .collapse a {
  background: transparent !important;
  border: none !important;
  border-top: 0 !important;
  float: inherit !important;
  width: auto !important;
  padding: inherit !important;
  box-sizing: inherit !important;
  line-height: inherit !important;
  display: inline-block !important;
  transition: inherit !important;
}
.rotateme {
  -webkit-animation-name: rotateme;
  animation-name: rotateme;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.preloader {
  background-color: #f7f7f7;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  margin: 0 auto;
}
.preloader .preloader-circle {
  width: 100px;
  height: 100px;
  position: relative;
  border-style: solid;
  border-width: 1px;
  border-top-color: #cf1e55;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  z-index: 10;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  background-color: #fff;
  -webkit-animation: zoom 2000ms infinite ease;
  animation: zoom 2000ms infinite ease;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}
.preloader .preloader-circle2 {
  border-top-color: #0078ff;
}
.preloader .preloader-img {
  position: absolute;
  top: 50%;
  z-index: 200;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-top: 6px;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}
.preloader .preloader-img img {
  max-width: 55px;
}
.preloader .pere-text strong {
  font-weight: 800;
  color: #dca73a;
  text-transform: uppercase;
}
@-webkit-keyframes zoom {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }
}
@keyframes zoom {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }
}

.atoHt {
  min-height: 580px;
}
.regForm {
  padding: 0 0 0 60px;
}
.register-login {
  padding: 50px 0;
  /*height: calc(130vh - 80px);*/
  align-items: center;
  display: flex;
}
.regOne {
  height: 100% !important;
}
.register-login h1 {
  line-height: 1em;
  font-size: 42px;
  color: #3e3e3e;
  letter-spacing: normal;
  margin-bottom: 30px;
}
.register-login h1 img {
 /* width: 45px;*/
 max-height: 26px;
  position: relative;
  top: -3px;
  margin-right: 15px;
}

.register-login .textPra {
  color: #3e3e3e;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.4em;
  font-family: "courier_newregular";
}
.iframeBg {
  /* background: url(../img/video-frame.png) no-repeat center; */
  width: 550px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.iframeBg img {
  width: 100%;
}
.iframeBg iframe {
  height: 270px;
  width: 89%;
  position: absolute;
  top: 15px;
  left: 30px;
}

.regForm .form-control {
  border-radius: 0;
  border: 1px solid rgba(153, 153, 151, 1);
  height: 54px;
  padding: 0 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #3e3e3e;
  background-color: #fff;
  display: block;
  width: 100%;
}
.regForm .form-check .form-check-label {
  min-height: 20px;
  font-weight: 300;
  font-size: 16px;
  max-width: 100%;
  padding-left: 0;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #a9a9a9;
}
.regForm .form-check .form-check-label a {
  color: #337ab7;
}
.f-sz1 {
  font-family: "Open Sans";
  font-size: 13px;
}
.capTcha img {
  width: 280px;
}

.alart-popup {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  border-radius: 0;
}

.footer-sec {
  background: #f5f6f8;
  padding: 50px 0;
}
.ftrLogo {
  max-height: 26px;
}
.pr-raleway {
  font-size: 14px;
  color: rgba(62, 62, 62, 1);
  letter-spacing: normal;
  font-family: "Lato", sans-serif;
  font-weight: 300;

  line-height: 22px;
  margin-bottom: 10px;
}
.igrameBox {
  padding-right: 50px;
}
.igrameBox iframe {
  width: 100%;
}
.bdrBtm {
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e1e1;
}
.footer-sec h5 {
  color: #3e3e3e;
  letter-spacing: 2.4px;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: "Lato", sans-serif;
  font-weight: 300;
}

.footer-sec ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.footer-sec ul li {
  line-height: normal;
}
.footer-sec ul li a {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  line-height: 1.4em;
  font-size: 14px;
  color: rgba(62, 62, 62, 1);
  letter-spacing: normal;
  /*text-decoration: underline;*/
}
.asmi h3 {
  font-size: 15px;
  color: #3e3e3e;
  line-height: 20px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
}
.asmi p {
  font-size: 13px;
  color: rgb(137, 137, 137);
  line-height: 18px;

  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
}
.bdr-btm1 {
  border-bottom: 1px solid #e5e5e5;
  padding: 0 0 20px 0;
}

.modal-open .newModal2 {
  height: 100vh;
}
.newModal2 .modal-dialog {
  width: 940px !important;
  max-width: initial !important;

  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}
.newModal2 .modal-dialog .modal-content {
  padding: 35px 35px 29px 35px;
  background: #fff;
  border-radius: 0;
  border: none;
  position: relative;
  max-height: 95vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.newModal2 .close {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 1;
  z-index: 99999;
  padding: 10px 13px;
  font-size: 30px;
  color: #000;
  background: #f7f7f7;
}
.newModal2 .videoFrame h4 {
  padding: 0;
  border: none;
  margin-bottom: 0;
  font-size: 14px;
  color: rgb(137, 137, 137);
  line-height: 14px;
}
.newModal2 .videoFrame h4 i {
  font-size: 18px;
  font-weight: 400;
}
.asmi {
  padding: 50px 0 36px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 50px;
}

.noSticky {
  position: relative !important;
}

.tobias {
  background: url(../img/Hashing_Ad.jpg) no-repeat center top fixed;
  padding: 200px 0 100px;
  position: relative;
}
.tobias::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(48, 51, 57, 0.8);
}
.tobias .container {
  position: relative;
  z-index: 1;
}
.font-all {
  font-size: 24px;
  color: #fff;
}
.playFont {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.watchVdo2 {
  padding-top: 60px;
}
.watchVdo2 i {
  color: #fff;
  position: relative;
  margin-right: 10px;
  top: 1px;
  font-size: 18px;
}
.watchVdo2 a {
  color: #cf1e55;
  font-size: 16px;
}
.inrCont {
  padding: 0 40px;
}

.modal-open .newModal3 {
  height: 100vh;
}
.newModal3 .modal-dialog {
  width: 778px !important;
  max-width: initial !important;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}
.newModal3 .modal-dialog .modal-content {
  padding: 35px;
  background: #fff;
  border-radius: 0;
  border: none;
  position: relative;
  max-height: 95vh;
  overflow-y: auto;
}
.newModal3 .close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99999;
  padding: 10px 13px;
  font-size: 30px;
  color: #3e3e3e;
  background: #f7f7f7;
}
.newModal3 .videoFrame h4 {
  padding: 0;
  border: none;
  margin-bottom: 0;
  font-size: 14px;
  color: rgb(137, 137, 137);
  line-height: 14px;
}
.newModal3 .videoFrame h4 i {
  font-size: 18px;
  font-weight: 400;
}

.listGrow {
  padding: 50px 0;
  background: rgba(251, 251, 251, 1);
}
.flexList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}
.flexList div {
  font-size: 20px;
  line-height: 1em;
  color: #3e3e3e;
  position: relative;
}

.flexList div i {
  position: relative;
  margin-right: 10px;
}
.listGrow h2 {
  font-size: 42px;
  line-height: 1.4em;
  color: #3e3e3e;
  letter-spacing: normal;
}
.imgBox1 {
  padding: 100px 0;
}
.imgBox1 img {
  width: 80%;
}
.row-img {
  padding: 0 0 40px 0;
}
.ftfu {
  color: #3e3e3e;
  line-height: 1.4rem;
  font-family: "courier_newregular";
  font-weight: normal;
}

.ourAdvertise {
  padding: 40px 0 60px;
}
.ht-top {
  line-height: 1em;
  font-size: 42px;
  color: #3e3e3e;
  font-weight: 600;
}
.ourAdvertise p {
  color: #3e3e3e;
  line-height: 1.4rem;
  font-family: "courier_newregular";
  font-weight: normal;
}
.pnl-box3 {
  overflow: hidden;
}
.pnl-box3 h4 {
  font-size: 18px;
  color: #3e3e3e;
  margin-bottom: 40px;
}
.pnl-box3 h4 i {
  margin-right: 15px;
}
.pnl-box3 {
  padding: 50px 35px 40px;
  background: #fff;
  border: 1px solid #e1e1e1;
  height: 100%;
}
.pnl-box3 h2 {
  font-weight: 600;
  font-size: 30px;
  color: #3e3e3e;
  margin-bottom: 35px;
}
.pnl-box3 p {
  color: #3e3e3e;
  line-height: 1.4rem;
  font-family: "courier_newregular";
  font-size: 16px;
}
.pnl-box3 ul {
  margin: 0 0 30px;
}
.pnl-box3 ul li {
  /* font-family: "Open Sans"; */
  font-family: "courier_newregular";
  font-size: 16px;
  line-height: 1.5em;
  color: rgba(62, 62, 62, 1);
  letter-spacing: normal;
}
.backedBy {
  font-family: "Open Sans";
  line-height: 1.4em;
  font-size: 15px;
  color: #3e3e3e;
  letter-spacing: normal;
  font-weight: 700;
  padding: 20px 0 0 0;
}
.mt-60 {
  margin-top: 60px;
}
.bg-grt {
  background: #fbfbfb;
  padding-bottom: 0;
}
.fntStyle {
  font-family: " Courier New";
  color: rgba(62, 62, 62, 1);
  line-height: 1.5em;
}

.bg-grt .coteLine p {
  color: rgba(62, 62, 62, 1);
  font-size: 16px;
}
.bg-grt .coteLine h6 {
  color: rgba(62, 62, 62, 1);
}
.win-auto {
  width: 220px;
}
.ht-auto {
  height: 550px !important;
}
.ad-space {
  padding-bottom: 100px;
}
.ad-space h2 {
  font-weight: 600;
  font-size: 30px;
  color: #3e3e3e;
  margin-bottom: 40px;
}
.ad-space p {
  font-size: 16px;
  line-height: 1.4rem;
  font-family: "courier_newregular";
  font-weight: normal;
  color: #3e3e3e;
}
.missionBox {
  background-color: rgba(251, 251, 251, 1);
  padding: 80px 0;
}
.bgBlue {
  background-color: rgba(85, 195, 255, 1) !important;
}
.mm_box {
  background: #fff;
  padding: 60px 40px;
  text-align: center;
  height: 100%;
}
.mm_box figure {
  margin-bottom: 30px;
}
.mm_box h2 {
  font-weight: bold;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.review-div {
  margin-bottom: 35px;
}
.fontStyle1 {
  color: #3e3e3e;
}
.fontStyle2 {
  color: #fff;
}

.wrapAll {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  flex-wrap: wrap;
}
.wrapAll figure {
  margin-bottom: 15px;
}
.img-team {
  width: 117px;
  height: 117px;
  object-fit: cover;
  border-radius: 50%;
}

.wrapAll h5 {
  font-size: 18px;
  font-weight: bold;
  font-family: "Open Sans";
  color: #3e3e3e;
  margin-bottom: 0;
}
.degi {
  color: rgb(137, 137, 137);
  font-size: 15px;
  font-size: 14px;
  font-family: "courier_newregular";
}
.wolo {
  width: 20%;
  margin-bottom: 40px;
}
.abtHas h3 {
  font-size: 20px;
  font-weight: 600;
  color: rgba(62, 62, 62, 1);
  padding-top: 25px;
  margin-bottom: 25px;
}
.abtHas h5 {
  font-size: 16px;
  font-weight: bold;
  color: rgba(62, 62, 62, 1);
  line-height: 1.5em;
  font-family: "courier_newregular";
  margin-bottom: 5px;
}
.fntSize {
  font-size: 30px !important;
  font-weight: bold !important;
}

.simple-video2 {
  width: 230px;
}
/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media only screen and (max-width: 991px) {
  #intro {
    height: auto;
    padding: 100px 0 50px;
  }
  #intro .intro-info h1 {
    font-size: 30px;
  }
  .hashing h2 {
    font-size: 24px;
  }
  .size18 {
    font-size: 14px !important;
  }
  .hashing {
    padding-top: 0;
  }
  .boxed-sec {
    padding: 50px 0;
  }
  .getPaid {
    padding: 50px 0;
  }
  .getPaid h2 {
    font-size: 24px;
  }
  .getPaid i {
    margin-right: 5px;
  }
  .hashing i {
    margin-right: 5px;
  }
  .pnl-box2 h2 {
    font-size: 24px;
  }
  .pnl-box2 i {
    margin-right: 5px;
  }
  .coteLine p {
    font-size: 14px;
  }
  .jointhe h2 {
    font-size: 24px;
  }
  .jointhe h2 i {
    margin-right: 5px;
  }
  br {
    display: none;
  }
  .listUl li {
    font-size: 16px;
  }
  .weCare {
    padding-right: 0;
  }
  #faq h2 {
    font-size: 24px;
  }
  .start_earn h1 {
    font-size: 30px;
  }
  .joinBox {
    min-height: inherit;
  }
  .igrameBox {
    padding-right: 0;
  }
}



@media (max-width: 991px) {
  #header {
    height: auto;
    padding: 15px 0;
  }

  #header .logo h1 {
    padding: 0 0;
  }

  #why-us .why-us-content {
    padding-top: 30px;
  }

  #pricing {
    padding-bottom: 30px;
  }

  #pricing .card {
    margin-bottom: 50px;
  }
  .md {
    padding: 0 15px;
  }
  a.login_bg {
    margin-bottom: 15px;
    color: #cf1e55;
    text-align: center;
  }
  .regForm {
    padding: 0;
  }
  .newModal3 .modal-dialog {
    width: 95% !important;
  }
  .newModal2 .modal-dialog {
    width: 95% !important;
  }
  .newModal .modal-dialog {
    width: 95% !important;
  }
}

/*---- Sanjoy style ----*/
.deskNav {
  display: none !important;
}

@media (max-width: 991px) {
  .container-percent.mobNan {
    display: none !important;
  }
  #header{
    padding: 0;
  }

.deskNav {
    display: block !important;
    margin-bottom: 0;
  }
  .mobile-nav-toggle{
    display:none !important;
  }
  .navbar-toggler {
   position: relative;
    float: right;
    padding: 6px 10px;
    color: #fff;
    right: 15px;
    font-size: 20px;
    margin-bottom: 8px;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
.navbar-toggler {
    margin-right: 0;
    background-color: #2176f7;
    margin-top: 10px;
    border-color: #2593fa;
}
.navbar-toggler:focus, .navbar-toggler:hover {
    background-color: #2593fa;
}
.navbar-collapse {
    right: 15px;
    left: 15px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid #000;
    -webkit-box-shadow: inset 0 1px 0 rgb(255 255 255 / 10%);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 10%);
    position: absolute;
    top: 100%;
}
.navbar-collapse .navbar-nav{

  background: #2593fa;
    padding: 10px 15px;
}
.navbar-nav li {
    margin: 5px 5px;
}
.navbar-nav li a {
    font-size: 15px;
    color: #A9A9A9;
    padding: 5px 13px !important;
    line-height: 15px;
}
.navbar-nav li a {
    color: #fff !important;
}


}
/*---- Sanjoy style end ----*/

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .newModal3 .modal-dialog {
    width: 95% !important;
  }
  .newModal2 .modal-dialog {
    width: 95% !important;
  }
  .newModal .modal-dialog {
    width: 95% !important;
  }
  .igrameBox {
    margin-bottom: 20px;
  }
  .register-login {
    height: auto;
    padding: 30px 0 30px;
  }
  #intro {
    text-align: center;
  }
  .hashing h2 {
    font-size: 20px;
  }
  .getPaid h2 {
    font-size: 20px;
  }
  .pnl-box2 h2 {
    font-size: 20px;
  }
  .jointhe h2 {
    font-size: 20px;
  }
  .number_word {
    font-size: 34px;
  }
  #faq h2 {
    font-size: 20px;
  }
  .text-size {
    font-size: 24px;
  }

  .atoHt {
    min-height: inherit;
  }
  #about {
    padding: 40px 0;
    text-align: center;
  }
  .gp-complete {
    padding: 40px 0;
    text-align: center;
  }
  .pnl-box {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .iconWith-text {
    justify-content: center;
  }
  .pl-left30 {
    padding-right: 0;
  }
  .pl-left30 img {
    margin-bottom: 30px;
  }
  .getPaid {
    text-align: center;
  }
  .pnl-box2 {
    padding: 30px 20px;
    height: auto;
  }
  .pnl-box2.mr-4 {
    margin-right: 0 !important;
    margin-bottom: 20px;
  }
  .pnl-box2.ml-4 {
    margin-left: 0 !important;
  }
  .autoWid {
    width: 100%;
    margin-bottom: 30px;
  }
  .jointhe {
    padding: 50px 0;
    text-align: center;
  }
  .regMember {
    text-align: center;
  }
  .listUl {
    margin-bottom: 30px;
  }
  #faq {
    padding: 50px 0;
  }
  #faq h2 {
    text-align: center;
  }
  .start_earn {
    padding: 50px 0;
    text-align: center;
  }
  .hashing {
    padding-top: 20px;
  }
  main {
    overflow: hidden;
  }
  .footer-sec figure {
   /* text-align: center; */
  }
  .footer-sec h5 {
    font-size: 20px;
  }
  .iframeBg {
    width: 300px;
    background-size: contain;
  }
  .iframeBg iframe {
    height: 147px;
    top: 53px;
  }
  .mb-center {
    display: flex;
    justify-content: center;
  }
  .tobias {
    padding: 50px 0;
  }
  .flexList {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .flexList div {
    margin: 0 0 15px;
  }
  .listGrow h2 {
    font-size: 34px;
  }
  .ht-top {
    font-size: 34px;
  }
  .pnl-box3 {
    padding: 25px;
    margin-bottom: 20px !important;
    height: auto;
  }
  .pnl-box3 h2 {
    font-size: 24px;
  }
  .pnl-box3.mr-4 {
    margin-right: 0 !important;
  }
  .mt-60 {
    margin-top: 0;
  }
  .row.align-items-center.w-100 {
    width: auto !important;
  }
  .ad-space {
    text-align: center;
  }
  .ht-auto {
    height: auto im !important;
  }
  .wolo {
    width: 50%;
  }
  .wrapAll {
    margin-bottom: 50px;
  }
  .abtHas h3 {
    font-size: 16px;
  }
}




/* ================checkout process==================== */
.listing-sec1-bg{
    padding-bottom: 2.01117%;
    padding-top: 6.32678%;
    background: url("../img/bg5-1089056.png") right center repeat-y !important;
}
.font-42{
	font-size:42px !important;
}
.font-30{
	font-size:30px !important;
}
.font-weight-600{
	font-weight:600 !important;
}
.font-weight-700{
	font-weight:700 !important;
}
.lh-1-5{
	line-height:1.5 !important;
}
.prd-list-iconbox{
	position:relative;
	padding-left: 40px;
}
.prd-list-iconbox i{
	position: absolute;
    font-size: 20px !important;
    left: 0px;
    top: 6px;
}
.prd-list-iconbox h4{
	font-weight:600;
}
.listing-sec2-bg{
    padding-bottom: 2.01117%;
    padding-top: 6.32678%;
    background: url("../img/bg5-1089056.png") left center repeat-y !important;
}
.prd-listing-productbox h2{
	font-weight: 700;
	font-size: 26px;
	padding-bottom: 10px;
}
.prd-listing-productbox h3{
	font-weight: 400;
	font-size: 24px !important;
}
.prd-listing-productbox .prd-img{
	height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.prd-listing-productbox .prd-img img{
	max-height: 100%;
}
.prd-listing-productbox .pnl-box3{
	padding-top:25px;
}
.checkoutnow-btn{
	position: fixed;
    top: 100px;
    right: 30px;
    padding: 4px 4px 4px 20px;
    background: #fff;
    box-shadow: 0 6px 11px 0 rgb(0 0 0 / 7%);
    border: 1px solid #ecedf3;
    border-radius: 40px;
    z-index: 999;
    /* height: 50px; */
    align-items: center;
    justify-content: center;
    color: black;
    text-transform: uppercase;
    font-size: 14px;
	z-index:99999;
}
.checkoutnow-btn i{
	background-color: rgba(207, 30, 85, 1);
    height: 42px;
    width: 42px;
    color: #fff;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}
.checkout-main{
	width: 100%;
    padding-left: 35px;
    padding-right: 35px;
    background-color: rgba(255, 255, 255, 1);
    background-image: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    box-shadow: 0px 0px 25px 0px rgb(170 170 170 / 25%);
	position: relative;
}
.checkout-head{
	font-size:20px;
	font-weight:600;
	margin-bottom:15px;
}
.checkout-head:after{
	content: '';
    width: 105px;
    height: 2px;
    margin-top: 15px;
    margin-bottom: 10px;
    background: #999;
    display: block;
	background-color: rgba(207, 30, 85, 1);
}
.payment-method-box{
	font-size: 13px;
    color: #666;
    width: 100%;
    margin-bottom: 15px;
	padding: 15px;
    box-sizing: border-box;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-transition: border-color .3s ease;
    -moz-transition: border-color .3s ease;
    -ms-transition: border-color .3s ease;
    transition: border-color .3s ease;
    background: #fff;
}
.checkout-cardnumber-box{
	border: 1px solid rgba(120,120,120,.3);
    border-radius: 2px;
    margin-top: 10px;
	padding: 14px;
	display: flex;
	justify-content: space-evenly;
}
.checkout-cardnumber-box input{
	border: none !important;
	padding: 0 !important;
	outline:none !important;
	box-shadow:none !important;
	height: auto !important;
}
.payment-method-box label{
	font-size: 16px;
    color: #000;
}
.payment-method-box label i{
	font-size: 21px;
	margin-right:5px;
}
.checkout-iconbox {
	color: #999999;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: #999;
    /* line-height: 1.3; */
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.checkout-iconbox i{
	font-size: 34px;
	margin-right: 15px;
}
.checkout-list{
	font-size:16px;
	list-style-type:none;
	letter-spacing:0px;
	padding:0px;
	margin:0px;
}
.checkout-list b{
	font-weight:600;
}
.checkout-list li{
	margin-bottom:15px;
	padding-left: 22px;
	position: relative;
}
.checkout-list i{
	font-size: 22px;
    margin-right: 5px;
    position: absolute;
    left: 0px;
    top: 1px;
}
.checkout-pricebox{
	/* -webkit-box-shadow: 0 0 15px 3px rgb(0 0 0 / 5%);
    -moz-box-shadow: 0 0 15px 3px rgba(0,0,0,0.05);
    box-shadow: 0 0 15px 3px rgb(0 0 0 / 5%);
	padding: 35px;
	border-radius: 7px; */
}
.cart-right-row{
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 18px 5px;
}
.cart-right-row span{
	font-weight:600;
}
.text_couriernew {
    font-family: "courier_newregular" !important;
}
/* ================checkout process ends================= */