@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
  background-color: #030212;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 500;
}


/***** Font Files *****/

@font-face {
  font-family: 'Helvetica';
  src: url(../fonts/Helvetica.ttf);
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: 'Helvetica';
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'Helvetica';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'Helvetica';
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'Helvetica';
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Helvetica';
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
  
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

.menuSec {
  padding: 20px 4%;
}

.menuSec img {
  margin: 0;
}
.menuSec .row {
    align-items: center;
}
.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #222131;
  padding: 15px 0px;
  border-radius: 10px;
  width: 85%;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
  display: none;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #EFBF04;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}
a.btn-1 {
    font-size: 16px;
    color: #000;
    padding: 17px 35px;
    background-color: #EFBF04;
    border-radius: 8px;
    position: relative;
}
a.btn-1:before {
    position: absolute;
    left: 0;
    right: 0;
    width: 153px;
    margin: 0 auto;
    content: '';
    background-image: url(../images/btn-img.png);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -18px;
    height: 60px;
}
a.btn-1::after {
    position: absolute;
    top: -10%;
    left: -3%;
    height: 120%;
    width: 106%;
    background-repeat: no-repeat;
    background-image: url(../images/btn-border.png);
    background-size: 100% 100%;
    content: '';
    bottom: 0;
    right: 0;
    margin: 0 auto;
}
.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
/*banner css start */
.banner-top .row {
    align-items: center;
}

.banner-top {
    padding: 100px 4%;
}

.banner-txt h1 {
    font-size: 70px;
    line-height: 80px;
    font-weight: 300;
}
.banner-txt h1 span {
    color: #EFBF04;
}
.banner-txt h2 {
    font-size: 70px;
    line-height: 80px;
    font-weight: 300;
    color: #fff;
}
.banner-txt h2 span {
    color: #EFBF04;
}
.bann-bot {
    padding-bottom: 120px;
    position: relative;
    z-index: 9;
    padding: 0 14% 120px 14%;
}
.total-img::before {
    position: absolute;
    left: 0;
    width: 1px;
    height: 96px;
    content: '';
    background-color: #fff;
    top: -17px;
}
.ban-bot-bx {
    padding: 17px 25px;
    border: 1px solid #fff;
    border-radius: 10px;
    width: 90%;
    margin: 0 auto;
}

.ban-bot-img {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ban-bot-bx p {
    font-size: 14px;
    color: #fff;
    margin: 0px 0px 10px 30px;
    /* text-align: center; */
}
.ban-bot-bx p span{
  display: block;
}
.ban-bot-img h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}
.banner-txt p {
    font-size: 14px;
    width: 80%;
    margin-bottom: 40px;
    color: #fff;
}
.head-bann {
    position: relative;
}
.head-bann::before {
    position: absolute;
    top: 0;
    right: -22px;
    content: '';
    background-image: url(https://www.shepherdsgsd.com/wp-content/uploads/2025/08/gold-head-ban.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 943px;
    width: 836px;
    z-index: -1;
}
.head-bann::after {
   position: absolute;
   top: 0;
   right: 108px;
   content: '';
   background-image: url(../images/ban-dot.png);
   background-repeat: no-repeat;
   background-size: cover;
   height: 943px;
   width: 952px;
   z-index: -1;
}
.banner-txt a.btn-1::after {
    /* width: 104%; */
    /* height: 120%; */
    /* background-size: cover; */
}
.bann-bot::before {
    position: absolute;
    top: -117px;
    left: 0;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
    background-image: url(../images/ban-bot.png);
    height: 160px;
}
/*banner css end*/
/*about start*/
.abt-txt h6 {
    font-size: 16px;
    color: #fff;
    padding: 5px 20px;
    background-color: #353541;
    width: fit-content;
    border-radius: 100px;
    margin-bottom: 10px;
}
.abt-txt h3 {
    font-size: 45px;
    color: #fff;
    line-height: 55px;
    margin-bottom: 5px;
    font-weight: 400;
}

.abt-txt h3 span {
    color: #EFBF04;
    font-weight: 600;
}

.abt-txt h4 {
    font-size: 45px;
    line-height: 55px;
    color: #fff;
    font-weight: 300;
}

.abt-txt h4 span {
    color: #EFBF04;
    font-weight: 600;
}
.abt-txt-bot p {
    font-size: 14px;
    color: #ffffff;
    line-height: 23px;
    margin-bottom: 50px;
    width: 90%;
}
.abt-txt-bot-bx {
    margin-top: 27%;
    background-color: #1c1f2c;
    border-radius: 20px;
    padding: 30px;
    height: 460px;
    position: relative;
    width: 95%;
}
.abt-txt-bot-bx h3 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 13px;
    font-weight: 300;
    color: #fff;
    font-weight: 300;
}

.abt-txt-bot-bx p {
    font-size: 14px;
    color: #fff;
    width: 100%;
}
.abt-sm-img {
    position: absolute;
    width: 100%;
    left: 0;
    margin-top: 0px;
    bottom: 27px;
}

.abt-sm-img img {
    width: 86%;
    /*height: 270px;*/
    border-radius: 20px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}
.abt-sm-txt {
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
}
.abt-sm-txt h6 {
   font-size: 16px;
    color: #fff;
    padding: 5px 20px;
    background-color: #353541;
    width: fit-content;
    border-radius: 100px;
    margin-bottom: 10px;
}
.abt-txt-bot-bx.tw {
  margin-top: 30px;
  height: 325px;
  position: relative;
  z-index: 1;
}


.abt-txt-bot-bx.tw p {
    width: 100%;
}
.total-raise-bx {
    padding: 10px;
    background-color: #0c141d;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.total-raise-txt h6 {
    font-size: 12px;
    margin-bottom: 3px;
    color: #fff;
}

.total-raise-txt h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    font-family: 'Poppins';
    margin-bottom: -1px;
}
.total-img {
    margin: 0 0 0 auto;
    position: relative;
}
.block-img {
    margin-top: 28px;
}

.block-img img {
    width: 100%;
}
.spon-bx {
    background-color: #1c1f2c;
    width: 95%;
    border-radius: 20px;
    padding: 30px;
    height: 580px;
    margin-top: 29%;
}
.spon-bx h3 {
    font-size: 25px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 300;
}
.spon-bx p {
    font-size: 14px;
    color: #fff;
    width: 100%;
}
.spon-dog img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

.spon-dog {
    position: relative;
    margin-top: 40px;
    z-index: 1;
}
.spon-dog .spon-sm-1 img {
    width: auto;
    height: auto;
}

.spon-dog .spon-sm-2 img {
    width: auto;
    height: auto;
}
.spon-sm-1 {
    position: absolute;
    top: -33px;
    z-index: -1;
    left: 0;
}
.spon-sm-2 {
    position: absolute;
    top: -33px;
    z-index: -1;
    right: 0;
}
section.about-us {
    padding-bottom: 100px;
}
.abt-txt-bot-bx.tw::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/total-raise-bg.png);
    height: 300px;
    z-index: -1;
}
/*about end*/
/*how-its work start*/
.tabs-open.curr {
    display: block;
}

.tabs-open {
    display: none;
}

.product-tab-list ul {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    margin-bottom: 60px;
    justify-content: center;
    gap: 35px;
}
.product-tab-list ul li.curr::before {position: absolute;bottom: -10px;left: 0;width: 80%;content: '';background-color: #EFBF04;height: 10px;}

section.how-it {
    padding-bottom: 100px;
}
.how-it-txt {
    text-align: center;
}
.product-tab-list ul li.curr {
    position: relative;
}
.how-it-txt h6 {
    font-size: 16px;
    color: #fff;
    padding: 5px 20px;
    background-color: #353541;
    width: fit-content;
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 15px;
}

.how-it-txt h3 {
    font-size: 45px;
    line-height: 50px;
    color: #fff;
    font-weight: 300;
}

.how-it-txt h3 span {
    font-weight: 600;
    color: #EFBF04;
}



.main-token-bx {
    padding: 30px;
    border-radius: 20px;
    background-color: #1c1f2c;
    height: 610px;
    position: relative;
    z-index: 1;
}
.main-token-bx::before{
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  background-size: cover;
  background-image: url(../images/token-bg.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 260px;
  z-index: -1;
}
.main-token-bx h3 {
    font-size: 25px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 10px;
}

.main-token-bx p {
    font-size: 14px;
    width: 90%;
    color: #fff;
    padding-bottom: 10px;
}
.tok-sm-bx {
    margin: 0 auto;
    margin-top: 70px;
    background-color: #0b0f1d;
    border-radius: 20px;
    width: 80%;
}
.tok-sm-txt {
    padding: 20px;
}
.tok-sm-txt ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.tok-sm-txt ul li p {
    font-size: 14px;
    width: 100%;
    margin: 0;
    border: unset;
    padding: unset;
}

.tok-sm-txt img {
    margin-bottom: 10px;
}

.tok-sm-txt h4 {
    font-size: 35px;
    color: #fff;
    font-weight: 600;
    margin: 10px 0px 30px;
}

.tok-sm-img img {
    width: 100%;
}
.main-ul ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1b1b1b;
    padding: 20px 10px;
    border-radius: 15px;
}

.main-ul ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-ul ul li p {
    border: unset;
    font-size: 14px;
    color: #fff;
    margin: unset;
    padding: unset;
}

.main-ul ul li h6 {
    font-size: 18px;
    color: #fff;
    font-family: 'Helvetica';
    text-align: end;
    margin: 0;
}

.main-ul ul li h6 span {
    display: block;
    font-family: 'Poppins';
    font-size: 14px;
}

.main-ul {
    margin-top: 80px;
}
.product-tab-list ul li {
    color: #fff;
    font-size: 19px;
    font-family: 'Helvetica';
    text-align: center;
    border-bottom: 10px solid #353541;
    width: 21%;
    padding-bottom: 17px;
    position: relative;
}

/*how-its work end*/
/*support start*/
section.support-goes {
    padding: 100px 0px;
    background-image: url(../images/sup-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.sup-txt-top {
    text-align: center;
    margin-bottom: 50px;
}
.sup-txt-top h6 {
    font-size: 16px;
    color: #fff;
    padding: 5px 20px;
    background-color: #353541;
    width: fit-content;
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 15px;
}
.sup-bx {
    padding: 30px;
    background-color: #1c1f2c;
    border-radius: 20px;
    text-align: center;
}

.sup-bx img {
    margin: 0 auto;
    margin-bottom: 10px;
    width: auto;
}
.sup-txt-top h2 {
    font-size: 45px;
    color: #fff;
    line-height: 50px;
    font-weight: 400;
}

.sup-txt-top h2 span {
    font-weight: 600;
    color: #EFBF04;
}

.sup-bx h4 {
    font-size: 19px;
    color: #fff;
    line-height: 22px;
    font-weight: 400;
    margin-top: 20px;
}

.sup-bx p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}
section.support-goes .slick-active {
    opacity: 1;
}
.sup-slid .slick-prev:before {
    position: absolute;
    top: 0;
    left: -20px;
    content: '\f060';
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #EFBF04;
    opacity: 1;
    font-family: 'FontAwesome';
}
.sup-slid .slick-next:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '\f061';
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #EFBF04;
    opacity: 1;
    font-family: 'FontAwesome';
}
/*section.support-goes end*/
/*testimonials start*/
.test-img img {
    width: auto;
}
section.testimonial {
    padding: 100px 0px;
}
.test-txt h6 {
    font-size: 16px;
    color: #fff;
    padding: 5px 20px;
    background-color: #353541;
    width: fit-content;
    border-radius: 100px;
    margin-bottom: 15px;
}
.test-txt h3 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 300;
    color: #fff;
}

.test-txt h3 span {
    color: #EFBF04;
    font-weight: 600;
}
.test-txt {
    margin-bottom: 50px;
}
.test-main-bx {
    padding: 50px 30px;
    border: 1px solid #fff;
    border-radius: 15px;
}

.test-main-bx p {
    font-size: 14px;
    color: #fff;
}

.test-img {
    display: flex;
    align-items: center;
    gap: 10px;
}

.test-img h5 {
    font-size: 19px;
    color: #fff;
    margin: unset;
}

.test-img h5 span {
    display: block;
    font-size: 12px;
    color: #fff;
    font-family: 'Poppins';
    font-weight: 300;
}

.test-sm-bx {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.test-sm-bx ul {
    display: flex;
    align-items: center;
    margin: unset;
}

.test-sm-bx ul li i {
    color: #f9ae0e;
}

.test-sm-bx ul li.last i {
    color: #fff;
}
.test-slid .slick-active {
    opacity: 1;
}

.test-slid .slick-prev, .test-slid .slick-next {
    position: absolute;
    top: -70px;
    right: 46px;
    left: auto;
}
.test-slid .slick-prev {
    right: 81px;
}
.test-slid .slick-prev:before {
    position: absolute;
    top: 0;
    left: -20px;
    content: '\f060';
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #EFBF04;
    opacity: 1;
    font-family: 'FontAwesome';
}
.test-slid .slick-next:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '\f061';
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #EFBF04;
    opacity: 1;
    font-family: 'FontAwesome';
}
/*testimonials end*/
/*contact start*/
.cont-txt-top {
    text-align: center;
    margin-bottom: 50px;
}
.cont-txt-top h6 {
    font-size: 16px;
    color: #fff;
    padding: 5px 20px;
    background-color: #353541;
    width: fit-content;
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 15px;
}
.cont-txt-top h3 {
    font-size: 45px;
    line-height: 55px;
    color: #fff;
    font-weight: 300;
}

.cont-txt-top h3 span {
    color: #EFBF04;
    font-weight: 600;
}
.cont-img img {
    width: 100%;
}
.cont-bx-main .row {
    align-items: center;
}
.cont-bx-main {
    background-color: #1c1f2c;
    padding: 0 20px;
    padding-left: 0;
    width: 95%;
    margin: 0 auto;
}
.cont-form input {
    padding: 14px 20px;
    background-color: #030212;
    width: 100%;
    margin-bottom: 20px;
    border: unset;
    border-radius: 10px;
    color: #fff;
}
.cont-form textarea {
    padding: 12px 20px;
    background-color: #030212;
    width: 100%;
    margin-bottom: 20px;
    border: unset;
    border-radius: 10px;
    color: #fff;
    height: 150px;
    resize: none;
}
.cont-form input::placeholder{
  color: #9a9aa0;
}
.cont-form button {
    width: 100%;
    font-size: 16px;
    color: #000;
    padding: 17px 35px;
    background-color: #EFBF04;
    border-radius: 8px;
    position: relative;
    border: unset;
}

 .cont-form button:before {
    position: absolute;
    left: 0;
    right: 0;
    width: 463px;
    margin: 0 auto;
    content: '';
    background-image: url(../images/btn-img.png);
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 3px;
    height: 96px;
}
section.contact {
    padding-bottom: 100px;
}
/*contact end*/
/*footer start*/
.ft-txt {
    text-align: center;
    margin-bottom: 20px;
}

.ft-txt h2 {
    font-size: 52px;
    line-height: 60px;
    color: #fff;
    font-weight: 600;
}
.fot-midd {
    padding: 50px 0px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.quick-links h5 {
    font-size: 19px;
    color: #fff;
    font-weight: 400;
    font-family: 'Helvetica';
}
.quick-links ul li a {
    font-size: 14px;
    color: #fff;
}
.quick-links.on ul {
    column-count: 2;
}

.quick-links ul li {
    padding-bottom: 15px;
}
.quick-links ul li p {
    font-size: 14px;
    color: #fff;
}

.quick-links ul li p span {
    display: block;
}
.fot-form p {
    font-size: 19px;
    color: #fff;
    line-height: 29px;
}

.fot-form p span {
    display: block;
}
.fot-form form input {
    padding: 14px 20px;
    background-color: #1c1f2c;
    width: 100%;
    margin-bottom: 20px;
    border: unset;
    border-radius: 10px;
    color: #fff;
}
.fot-form form button {
    width: 100%;
    font-size: 16px;
    color: #000;
    padding: 17px 35px;
    background-color: #EFBF04;
    border-radius: 8px;
    position: relative;
    border: unset;
}
.fot-form form button:before{
    position: absolute;
    left: 0;
    right: 0;
    width: 463px;
    margin: 0 auto;
    content: '';
    background-image: url(../images/btn-img.png);
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 3px;
    height: 96px;
  }
.fot-bot p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.fot-bot ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    justify-content: end;
}

.fot-bot ul li a {
    font-size: 14px;
    color: #fff;
}
.fot-bot {
    padding: 20px 0px;
}
/*footer end*/
/*inner-banner start*/
section.banner.inn .banner-top {
    padding-top: 15px;
}

section.banner.inn {
    position: relative;
}
section.banner.inn::before{
 position: absolute;
    bottom:  0px;
    left: 0;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
    background-image: url(../images/ban-bot.png);
    height: 160px;
  }

section.about-us.inn {
    padding-top: 30px;
    padding-bottom: 0;
}
.abt-txt p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 30px;
}
.abt-txt-bot-bx.inn {
    margin-top: 59%;
}
section.contact.inn {
    padding-top: 30px;
}
ul.cont-add {
    display: flex;
    align-items: center;
    margin: 70px 0px 30px;
    justify-content: space-between;
    margin-bottom: 0;
}

ul.cont-add li {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

ul.cont-add li a {
    font-size: 21px;
    color: #fff;
}

ul.cont-add li i {
    font-size: 20px;
    color: #fff;
}

ul.cont-add li p {
    font-size: 21px;
    color: #fff;
    margin: 0;
}

ul.cont-add li p span {
    display: block;
}
section.how-it.inn {
    padding-top: 30px;
}

section.support-goes.inn .sup-bx {
    margin: 30px 0px 0px 0px;
    text-align: start;
}
.sub-head {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin-bottom: 30px;
}

.sub-head img {
    margin: unset;
}
section.support-goes.inn {
    background-image: unset;
    padding: 30px 0px 100px;
}
section.support-goes.tok {
    padding-top: 30px;
    background-image: unset;
}
section.token-inn .sup-txt-top {
    text-align: start;
}

section.token-inn .sup-txt-top h2 {
    margin-bottom: 15px;
}

section.token-inn .sup-txt-top p {
    font-size: 14px;
    color: #fff;
}
a.btn-1:hover {
    transition: 2s;
    box-shadow: inset 300px 0px 0px 0px #fff;
    color: #000;
}
.quick-links ul li a:hover {
    color: #EFBF04;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
ul.cont-add li:last-child:before {
    display: none;
}
ul.cont-add li::before {
    position: absolute;
    top: -34px;
    right: -110px;
    width: 1px;
    height: 90px;
    background-color: #ffffffb0;
    content: '';
}

html{
  overflow-x: hidden;
}

.abt-txt-bot-bx.on::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 230px;
    background-image: url(../images/abt-4.png);
    background-repeat: no-repeat;
    z-index: 0;
    content: '';
    background-position: bottom;
}

.abt-txt-bot-bx.on.wow.fadeInUp {
    position: relative;
    z-index: 1;
}
@media only screen and (min-width: 1366px) and (max-width: 1920px){}

@media only screen and (min-width: 1200px) and (max-width: 1365px){}

@media only screen and (min-width: 992px) and (max-width: 1199px){

.menuSec ul li a {
    font-size: 11px;
}

.menuSec ul {
    width: 100%;
}
a.btn-1 {
    font-size: 12px;
    padding: 10px 13px;
}
.banner-txt h1 {
    font-size: 45px;
    line-height: 44px;
}

.banner-txt h2 {
    font-size: 45px;
    line-height: 50px;
}
.bann-bot {
    padding: 0 30px 100px;
}

.ban-bot-bx p {
    font-size: 12px;
    line-height: 24px;
    margin: unset;
}
.ban-bot-bx.wow.fadeInDown {
    width: 100%;
    padding: 15px;
}
.abt-txt h3 {
    font-size: 30px !important;
    line-height: 40px !important;
}

.abt-txt h4 {
    font-size: 35px;
    line-height: 45px;
}
section.about-us p {
    font-size: 11px;
    line-height: 22px;
}

section.about-us h3 {
    font-size: 30px;
    line-height: 33px;
}
.abt-txt-bot-bx {
    padding: 20px;
}
.total-raise-bx {
    margin-top: 10px;
}

.total-raise-txt h3 {
    font-size: 12px !important;
}

.total-raise-txt h6 {
    font-size: 9px;
    line-height: 14px;
}

.total-img::before {
    height: 85px;
}
.spon-bx {
    width: 100%;
    padding: 20px;    
}
.main-token-bx {
    padding: 20px;
}
.main-token-bx p {
    font-size: 12px !important;
    line-height: 21px;
}
.sup-bx {
    padding: 20px;
}

.sup-bx p {
    font-size: 12px;
    line-height: 22px;
}
.sup-bx h4 {
    font-size: 15px;
}

.test-main-bx {
    padding: 15px;
}

.test-main-bx p {
    font-size: 12px;
}
.test-img {
    display: block;
}

.test-img h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
}
section.testimonial .slick-slide {
    margin: 0px 10px;
}
.cont-bx-main {
    background-color: #1c1f2c;
    padding: 20px 20px;
   
}
.cont-form input {
    padding: 10px 20px;
    border-radius: 10px;
}
.quick-links ul li a {
    font-size: 12px;
    }
    .quick-links ul li p {
    font-size: 12px;
}
.fot-form p {
    font-size: 14px;
}
.ft-txt h2 {
    font-size: 30px;
    line-height: 40px;
}
ul.cont-add li p {
    font-size: 12px;
}

ul.cont-add li a {
    font-size: 12px;
}
ul.cont-add li::before {
    right: -70px;
}
  
}

@media only screen and (min-width: 768px) and (max-width: 991px){

.menuSec ul li a {
    font-size: 9px;
}

.menuSec ul {
    width: 100%;
}
a.btn-1 {
    font-size: 9px;
    padding: 10px 13px;
}
.banner-txt h1 {
    font-size: 45px;
    line-height: 44px;
}

.banner-txt h2 {
    font-size: 45px;
    line-height: 50px;
}
.bann-bot {
    padding: 0 30px 100px;
}

.ban-bot-bx p {
    font-size: 9px;
    line-height: 20px;
   margin: unset; 
}
.ban-bot-bx.wow.fadeInDown {
    width: 100%;
    padding: 15px;
}
.abt-txt h3 {
    font-size: 30px;
    line-height: 40px;
}

.abt-txt h4 {
    font-size: 30px;
}
section.about-us p {
    font-size: 11px;
    line-height: 22px;
}

section.about-us h3 {
    font-size: 20px;
    line-height: 26px;
}
.abt-txt-bot-bx {
    padding: 20px;
}
.total-raise-bx {
    margin-top: 10px;
}

.total-raise-txt h3 {
    font-size: 12px !important;
}
a.btn-1:before {
    left: -19px;
    width: 114px;
    bottom: -24px;

}
section.support-goes .slick-prev {
    left: -5px;
}
section.support-goes .slick-next {
    right: -5px;
}
.total-raise-txt h6 {
    font-size: 9px;
    line-height: 14px;
}

.total-img::before {
    height: 85px;
}
.spon-bx {
    width: 100%;
    padding: 20px;    
}
.main-token-bx {
    padding: 20px;
}
.main-token-bx p {
    font-size: 12px !important;
    line-height: 21px;
}
.sup-bx {
    padding: 20px;
}

.sup-bx p {
    font-size: 12px;
    line-height: 22px;
}
.sup-bx h4 {
    font-size: 15px;
}

.test-main-bx {
    padding: 15px;
}

.test-main-bx p {
    font-size: 12px;
}
.test-img {
    display: block;
}

.test-img h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
}
section.testimonial .slick-slide {
    margin: 0px 10px;
}
.cont-bx-main {
    background-color: #1c1f2c;
    padding: 20px 20px;
   
}
.cont-form input {
    padding: 10px 20px;
    border-radius: 10px;
}
.quick-links ul li a {
    font-size: 12px;
    }
    .quick-links ul li p {
    font-size: 12px;
}
.fot-form p {
    font-size: 14px;
}
.ft-txt h2 {
    font-size: 30px;
    line-height: 40px;
}
ul.cont-add li p {
    font-size: 12px;
}

ul.cont-add li a {
    font-size: 12px;
}
ul.cont-add li::before {
    right: -70px;
}
}

@media only screen and (min-width: 520px) and (max-width: 767px){}

@media only screen and (min-width: 300px) and (max-width: 519px){

.menuSec .col-md-2.col-sm-6.col-xs-6 {
    width: 50% !important;
} 
.cont-txt-top h3 {
    font-size: 30px;
    line-height: 30px;
    }
    
a.btn-1:before {
    left: -18px;
}

a.btn-1 {
   font-size: 11px;
 padding: 11px 18px;
}
.banner-txt h1 {
    font-size: 30px;
    line-height: 30px;
}

.banner-txt h2 {
    font-size: 30px;
    line-height: 30px;
}

.banner-txt p {
    font-size: 12px;
    line-height: 23px;
}
section.Staking h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
}

section.Staking p {
    font-size: 12px;
    line-height: 22px;
}
.banner-txt {
    margin-bottom: 35px;
}
.banner-top {
    padding: 80px 4%;
}
.banner-img img {
    width: 100%;
    height: 324px;
    object-fit: contain;
    margin-top: 20px;
}
.bann-bot{
    padding: 0 2% 80px;
}
.ban-bot-bx {
    width: 100%;
    margin-bottom: 30px;
}

.ban-bot-bx p {
    font-size: 12px;
}
.abt-txt h3 {
    font-size: 30px;
    line-height: 36px;
}

.abt-txt h4 span {
    font-size: 30px;
}

.abt-txt h4 {
    font-size: 30px;
    line-height: 40px;
}
.abt-txt-bot p {
    font-size: 12px;
    line-height: 22px;
}

.abt-txt-bot-bx h3 {
    font-size: 20px;
    line-height: 20px;
}

.abt-txt-bot-bx p {
    font-size: 12px;
    line-height: 22px;
}

.spon-bx h3 {
    font-size: 20px;
    line-height: 22px;
}

.spon-bx p {
    font-size: 12px;
    line-height: 22px;
}
 
 .spon-bx{
     margin-top: 20%; 
 }
    .slicknav_nav a:hover {
        background: #ecc314;
        color: #fff;
    }
.how-it-txt h3 {
    font-size: 24px;
    line-height: 33px;
}
.product-tab-list ul {
    gap: 10px;
}

.product-tab-list ul li {
    width: 100%;
    font-size: 12px;
}
.main-token-bx h3 {
    font-size: 20px;
    line-height: 22px;
}

.main-token-bx p {
    font-size: 12px !important;
    line-height: 22px;
}
.tok-sm-txt {
    padding: 10px;
}
.tok-sm-bx {
    width: 100%;
    margin-top: 40px;
}

section.how-it .main-token-bx {
    height: 380px !important;
    margin: 20px 0px !important;
}
.main-ul ul {
    padding: 10px;
    margin-bottom: 10px;
}

.main-ul ul li h6 {
    font-size: 12px;
}

.main-ul ul li h6 span {
    font-size: 12px;
}
.main-ul {
    margin-top: 45px;
}
.test-main-bx p {
    font-size: 12px;
    line-height: 22px;
}

.test-main-bx {
    padding: 20px;
}
.test-txt h3 {
    font-size: 30px;
    line-height: 37px;
}
.sup-txt-top h2 {
    font-size: 34px;
    line-height: 42px;
}

.slick-prev, .slick-next {
    display: none !important;
}
.ft-txt h2 {
    font-size: 30px;
    line-height: 40px;
}
.fot-bot p {
    font-size: 10px;
    margin-bottom: 10px;
}
.fot-bot ul li a {
    font-size: 12px;
}
.fot-form p {
    font-size: 14px;
    line-height: 25px;
}
.test-img {
    display: block;
}
.cont-bx-main {
    padding: 15px 20px;
}
.quick-links ul li a {
    font-size: 12px;
}
.quick-links ul li p {
    font-size: 12px;
}
.abt-txt p {
    font-size: 12px;
    line-height: 22px;
}
section.banner.inn .banner-top {
    padding-top: 70px;
}
.sup-bx {
  margin: 20px 0px;
}
section.token-inn .sup-txt-top p {
    font-size: 12px;
    line-height: 22px;
}
.sup-bx p {
    font-size: 12px;
    line-height: 22px;
}

.sub-head {
    margin-bottom: 10px;
}
ul.cont-add {
    display: block;
}

ul.cont-add li {
    padding-bottom: 14px;
}

ul.cont-add li p {
    font-size: 12px;
}

ul.cont-add li a {
    font-size: 12px;
}

}


p.hf-message.hf-message-success {
    text-align: center;
    color: #fff;
    background: green;
    padding: 10px 0 10px 0px;
    border-radius: 9px;
    margin-top: 20px;
}

section.how-it .tok-sm-bx {
    display: none;
}

section.how-it .main-token-bx{

        height: 100% !important;
}

.main-token-bx a.btn-1 {
    display: block;
    width: fit-content;
    margin-top: 20px;
}
section.Impact h3 {
    color: #fff;
    font-size: 40px;
}

section.Impact ul li {
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
}

.bn {
    gap: 30px;
    display: flex;
}


section.Staking {
    margin-top: 70px;
    margin-bottom: 80px;
}

section.Staking h3 {
    color: #fff;
    font-size: 33px;
}

section.Staking p {
    color: #fff;
}

section.Staking .row {
    align-items: center;
}

.sub-head img {
    width: 55px;
}

.sup-bx img {
    width: 55px !important;
}

form#gform_1 input {
    padding: 32px 20px;
    background-color: #030212;
    border: unset;
    border-radius: 10px;
    color: #fff;
}


textarea#input_1_5 {
        padding: 12px 20px;
    background-color: #030212;
    width: 100%;

    border: unset;
    border-radius: 10px;
    color: #fff;
        min-height: 150px;
    resize: none;
}



input#gform_submit_button_1 {
    width: 100%;
    font-size: 16px;
    color: #000 !important;
    padding: 17px 35px !important;
    background-color: #EFBF04 !important;
    border-radius: 8px;
    position: relative;
    border: unset;
}


.gform-theme--api, .gform-theme--foundation {
    --gf-form-gap-y: 20px !important;

}

input#input_2_4 {
    padding: 28px 20px;
    background-color: #1c1f2c;
    width: 100%;
    margin-bottom: 20px;
    border: unset;
    border-radius: 10px;
    color: #fff;
}

input#gform_submit_button_2 {
    width: 100%;
    font-size: 16px;
    color: #000;
    padding: 17px 35px;
    background-color: #EFBF04;
    border-radius: 8px;
    position: relative;
    border: unset;

}


.cont-img img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}

form#gform_2 .gform-footer.gform_footer.top_label {
    margin-top: 0;
}