* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}
:root{
  --theme-color: #22823A;
  --secondary-color: #131615;
  --theme-color-2: #E4753D;
  --text-color: #666666;
  --title-color: #111111;
  --text-font: "IBM Plex Sans", sans-serif;
  --title-font: "Ubuntu", sans-serif;
}
body {
  font-size:16px;
  color: var(--text-color);
  line-height:26px;
  font-weight:400;
  background:#ffffff;
  font-family: var(--text-font);
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center top;
  -webkit-font-smoothing: antialiased;
}
a{
  text-decoration:none;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}
a:hover{
  text-decoration:none;
  outline:none;
}
input,button,select,textarea{
  font-family: var(--text-font);
  font-weight: 400;
  font-size: 18px;
  background: transparent;
}
::-webkit-input-placeholder {
  color: inherit;
}
::-moz-input-placeholder {
  color: inherit;
}
::-ms-input-placeholder {
  color: inherit;
}
ul,li{
  list-style:none;
  padding:0px;
  margin:0px; 
}
input{
  transition: all 500ms ease;
}
button:focus,
input:focus,
textarea:focus{
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}
p{
  position: relative;
  font-family: var(--text-font);
  color: var(--text-color);
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
}
h1,h2,h3,h4,h5,h6{
  position:relative;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
  margin: 0px;
  transition: all 500ms ease;
}
.centred{
  text-align: center;
}
.pull-left{
  float: left;
}
.pull-right{
  float: right;
}

figure{
  margin: 0px;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}
.container {
  max-width: 1199px;
  padding: 0 12px;
}
.container .row {
  margin: 0 -12px;
}
.container .row [class^="col-"] {
  padding: 0 12px;
}
.icm-navbar.affix-top {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: transparent;
  transform: translateY(0);
}
.icm-navbar.affix-top.fixed {
  background: #000000;
}
.icm-navbar.affix-top.header-inner {
  background: #000000;
}
.topbar {
  padding: 10px 0;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.icm-navbar.affix-top.fixed .topbar {
  margin: -39px 0 0;
  opacity: 0;
}
.top-left-bar ul {
  list-style: none;
  padding: 0;
  display: flex;
  margin: 0;
}
.top-left-bar ul li {
  margin: 0 15px 0 0;
  position: relative;
}
.top-left-bar ul li a {
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  text-decoration: none;
  color: #ffffff;
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.top-left-bar ul li a.current {
  color: var(--theme-color);
}
.top-left-bar ul li:after {
  content: "";
  width: 2px;
  height: 12px;
  background: rgba(204, 204, 204, 0.5);
  position: absolute;
  right: -7.5px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.top-left-bar ul li:last-child {
  margin: 0;
}
.top-left-bar ul li:last-child:after {
  display: none;
}
.top-right-bar ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: end;
}
.top-right-bar ul li {
  margin: 0 15px 0 0;
  position: relative;
}
.top-right-bar ul li a {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-decoration: none;
  color: #ffffff;
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.top-right-bar ul li a:hover {
  color: var(--theme-color);
}
.top-right-bar ul li:after {
  content: "";
  width: 2px;
  height: 12px;
  background: rgba(204, 204, 204, 0.5);
  position: absolute;
  left: -7.5px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.top-right-bar ul li:first-child:after {
  display: none;
}
.top-right-bar ul li.lang-list, .top-right-bar ul li:last-child {
  margin: 0;
}
.top-right-bar ul li a .new {
  background-color: var(--theme-color);
  color: #ffffff;
  border-radius: 6px;
  padding: 0 3px;
  margin-right: 3px;
  font-size: 8px;
  font-weight: bold;
  display: inline-block;
  vertical-align: text-bottom;
  line-height: 1.5;
}
.top-right-bar ul li.lang-list, .top-right-bar ul li:last-child {
  margin: 0;
}
.dropup, .dropend, .dropdown, .dropstart, .dropup-center, .dropdown-center {
  position: relative;
}
.lang_selector .dropdown-toggle {
  padding: 0 12px 0 0;
}
.lang_selector.open .dropdown-toggle {
  color: var(--theme-color);
}
.lang_selector a:before {
  content: "";
  width: 100%;
  height: 170%;
  background: transparent;
  position: absolute;
  top: 0;
}
.top-right-bar .lang_display {
  display: block;
}
.lang_selector .dropdown-toggle span {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #FFFFFF;
  position: relative;
}
.lang_selector .dropdown-toggle svg {
  fill: #FFFFFF;
  width: 15px;
  height: 15px;
  margin-right: 2px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.lang_selector.open .dropdown-toggle svg {
  fill: var(--theme-color);
}
.top-right-bar .lang_display span {
  text-transform: uppercase;
}
.lang_selector.open .dropdown-toggle .lang_display span {
  color: var(--theme-color);
}
.top-right-bar .lang_display:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -12px;
  margin: auto;
  z-index: -1;
  transition: 0.4s;
  transform: rotate(0deg);
}
@media (prefers-reduced-motion: reduce) {
  .top-right-bar .lang_display:after {
    transition: none;
  }
}
.lang_selector.open .dropdown-toggle .lang_display:after {
  transform: rotate(180deg);
  border-top-color: var(--theme-color);
}
.lang_selector .dropdown-menu--locale {
  width: 280px;
  min-width: auto;
  left: 0 !important;
  top: 25px !important;
  transform: translateX(-81%) !important;
  padding: 0;
  text-align: center;
  padding: 7px 5px 7px 7px;
  background-color: #F6F6F6;
}
.lang_selector .dropdown-menu--locale ul.dropdown-list-container___list {
  display: flex;
  padding: 0 4px 0 0;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 6px;
}
.open > .dropdown-menu {
  display: block;
}
.lang_selector .dropdown-menu--locale ul.dropdown-list-container___list li {
  margin: 0;
  border: 0;
  padding: 8px;
  color: #000000;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 48%;
  border-radius: 5px;
  background-color: #FFFFFF;
}
.lang_selector .dropdown-menu--locale ul.dropdown-list-container___list li:hover {
  background: rgba(52, 232, 52, 0.2);
}
.lang_selector .dropdown-menu--locale ul.dropdown-list-container___list li span {
  display: inline-block;
  line-height: 1;
}
.menubar {
  display: block;
  position: relative;
  height: 15px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}
.menubar span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 4px;
  position: relative;
  background: #FFFFFF;
  border-radius: 4px;
  z-index: 1;
  transform-origin: 2px 0;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
.menubar span:first-child {
  transform-origin: 0% 0%;
}
.menubar span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
.menubar span:last-child {
  margin: 0;
}
.menubar.open span {
  transform: rotate(45deg) translate(-8px, -16px);
}
.menubar.open span:first-child {
  opacity: 0;
}
.menubar.open span:nth-last-child(3) {
  transform: rotate(0deg) scale(0.2, 0.2);
}
.menubar.open span:nth-last-child(2) {
  transform: rotate(-45deg) translate(-5px, 14px);
}
.lang_selector .dropdown-toggle.show {
  color: var(--theme-color);
}
.lang_selector .dropdown-toggle.show svg {
  fill: var(--theme-color);
}
.lang_selector .dropdown-toggle.show .lang_display span {
  color: var(--theme-color);
}
.lang_selector .dropdown-toggle.show .lang_display:after {
  transform: rotate(180deg);
  border-top-color: var(--theme-color);
}
.top-right-bar .dropdown-toggle:after {
  display: none;
}
.header .logo a {
  display: block;
}
.header .logo a img {
  width: 100%;
  height: auto;
  max-width: 240px;
}
.header-nav {
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: center;
}
.header-nav > ul {
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 30px;
}
.header-nav .dropdown.navbar-list__item--style {
  position: relative;
}
.header-nav > ul > li > a {
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  text-decoration: none;
  color: #ffffff;
  display: block;
  padding: 15px 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header-nav > ul > li > a:after {
  display: none;
}
.header-nav > ul > li > a:hover, .header-nav .open > ul > li > a {
  color: var(--theme-color);
}
.header-nav .dropdown-menu--style {
  position: absolute;
  display: block;
  visibility: hidden;
  min-width: 250px;
  width: 100%;
  top: 93%;
  left: 0;
  right: 0;
  padding: 20px 15px;
  margin: auto;
  background: #000000;
  border-top: 1px solid #2f2f2f;
  border-radius: 12px;
  opacity: 0.1;
  z-index: 1;
}
.header-nav .open > .dropdown-menu--style {
  opacity: 1;
  visibility: visible;
}
.navbar-cta-block__heading {
  font-weight: 100;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.btn.btn-primary-md {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  padding: 6px 17px;
  display: inline-block;
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.btn.btn-outline-primary-md {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  padding: 7px 17px;
  color: #ffffff;
  border: 1px solid var(--theme-color);
  letter-spacing: 0.5px;
  border-radius: 8px;
  display: inline-block;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.btn.btn-outline-primary-md:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #000000;
}
.btn.btn-outline-primary-md.c-white {
  color: #FFFFFF;
}
.header .dropdown-heading {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: #FFFFFF;
  margin-bottom: 30px;
}
.header .dropdown-list-container___list {
  padding: 0;
  list-style: none;
  margin: 0;
}
.header .dropdown-list-container___list li {
  margin: 0 0 12px 0;
}
.header .dropdown-list-container___list li:last-child {
  margin: 0;
}
.header .dropdown-list-container___list li a {
  font-size: 16px;
  font-weight: 300;
  list-style: none;
  color: #ffffff;
  white-space: nowarp;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header .dropdown-list-container___list li a:hover {
  color: var(--theme-color);
}
.btn.btn-outline-primary-sm {
  font-weight: 700;
  font-size: 13px;
  line-height: 26px;
  padding: 5px;
  color: #FFFFFF;
  border: 1px solid var(--theme-color);
  min-width: 114px;
  min-height: 40px;
  letter-spacing: 0.5px;
  border-radius: 8px;
  display: inline-block;
  padding: 6px 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn.btn-outline-primary-sm:hover {
  background-color: var(--theme-color);
  color: #000000;
}
#homepagecarousel .item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100vh;
}
.carousel-caption {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 0 5px;
}
.carousel-caption h1, .carousel-caption .h1, .carousel-caption h2, .carousel-caption .h2 {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}
.carousel-caption h4, .carousel-caption .h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #ffffff;
}
.btn.btn-primary.bnrBtn {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  padding: 15px 40px;
  display: inline-block;
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn.btn-primary.bnrBtn:hover {
  background-color: #1a612c;
  border-color: #1a612c;
}
#homepagecarousel.owl-carousel .owl-dots {
  text-align: center;
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#homepagecarousel.owl-carousel button.owl-dot {
  width: 32px;
  height: 4px;
  border-radius: 12px;
  background: #FFFFFF;
  margin: 5px;
}
#homepagecarousel.owl-carousel button.owl-dot.active {
  background: var(--theme-color);
}
.txtS {
  margin: 80px 0 40px;
}
.funfact-section {
  padding: 0 0 40px;
  position: relative;
}
.funfact-block .inner-box {
  position: relative;
  display: block;
  padding: 35px 20px 35px 50px;
  background: #F5FFF9;
  border: 1px solid #BDE7C3;
}
.funfact-section .funfact-block:nth-child(2) .inner-box {
  border-radius: 10px 0 0 10px;
  border-right: 0;
}
.funfact-section .funfact-block:nth-child(3) .inner-box {
  border-radius: 0;
}
.funfact-section .funfact-block:nth-child(4) .inner-box {
  border-radius: 0 10px 10px 0;
  border-left: 0;
}
.inner-box h3 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 12px;
}
.inner-box p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: var(--secondary-color);
}
.funfact-section .txtP {
  margin-top: 30px;
}
.sec-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.sec-title h2 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
.mtlS {
  background-color: #f3f3f3;
  padding: 80px 0 50px;
}
.mtlC {
  width: 90%;
  max-width: 295px;
  height: 400px;
  position: relative;
  border-radius: 24px;
  margin: 0 auto;
  overflow: hidden;
  background-color: transparent;
  box-shadow: rgba(0, 0, 0, 0.2) 40px 60px 50px -35px;
}
.mtlC img {
  width: 100%;
  height: auto;
  max-width: 150px;
  position: absolute;
  left: 25%;
  z-index: 10;
}
.mtlB {
  background-color: #ffffff;
  position: absolute;
  inset: 0px;
  clip-path: path('M0 150.355C0 139.063 6.34028 128.728 16.4061 123.612L251.406 4.15914C271.364 -5.9857 295 8.51412 295 30.9025V486C295 502.569 281.569 516 265 516H30C13.4315 516 0 502.569 0 486L0 150.355Z');
}
.mtlI {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  margin-top: 50%;
  max-height: 380px;
  padding: 15px;
}
.mtlI h3{
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 15px;
}
.mtlI p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 25px;
}
.mtlR {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}
.mtlRt {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mtlRt_spnO {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: var(--text-color);
}
.mtlRt_spnT {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: var(--title-color);
}
.tblS {
  margin: 40px 0;
}
.tblC {
  padding: 25px 25px 12px;
  position: relative;
  overflow-x: auto;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 15px;
  background-color: #ffffff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06);
}
.trading-table {
  min-width: 1100px;
  width: 100%;
}
.trading-table thead td {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--title-color);
}
.trading-table tbody td {
  font-size: 16px;
  line-height: 20px;
  color: var(--title-color);
  padding: 16px 0px;
  font-weight: 500;
  text-transform: uppercase;
}
.trading-table thead td:first-child, .trading-table tbody td:first-child {
  padding-left: 0px;
}
.trading-table thead td, .trading-table tbody td {
  padding-left: 50px;
}
.trading-table thead td:last-child, .trading-table tbody td:last-child {
  text-align: right;
}
.trading-table tbody td .single-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trading-table tr td.upper {
  color: #2BAC62;
}
.trading-table tr td.lower {
  color: #FF5C5C;
}
.trading-table tbody td:last-child .single-item {
  justify-content: flex-end;
}
.tblS .txtP {
  text-align: center;
}
.tblDrk {
  position: relative;
  padding: 50px 0;
  background: #191919;
}
.bgTxr {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.tblDrk .sec-title {
  flex-direction: column;
}
.tblDrk .sec-title h2 {
  color: #ffffff;
}
.tblDrk .secPara {
  color: #ffffff;
}
.dtlK {
  margin-bottom: 40px;
}
.dtlK .sec-title {
  justify-content: center;
}
.dtlK .inner-container {
  position: relative;
  display: flex;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
}
.dtlK .inner-container .shape {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.dtlK .single-item {
  width: 50%;
  flex: 1 1 50%;
  position: relative;
  display: block;
  padding: 46px 25px 30px 30px;
  border-right: 1px solid #e5e5e5;
  min-height: 385px;
}
.dtlK .single-item:last-child {
  border-right: 0;
}
.dtlK .list-style-one li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
  padding-left: 20px;
}
.dtlK .single-item .list-style-one li:before {
  content: '\f219';
  position: absolute;
  left: 0px;
  top: 0px;
  font-family: 'Font Awesome 6 Free';
  font-size: 10px;
  font-weight: 900;
  color: var(--theme-color);
}
.txtC {
  margin: 15px 0 25px;
  padding-left: 25px;
}
.subscribe-section {
  position: relative;
}
.subscribe-section .bg-color {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 50%;
  background: #F7F7F7;
}
.subscribe-section .inner-container {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  padding: 45px 60px 38px;
  background: var(--theme-color);
}
.subscribe-section .inner-container .shape {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
}
.subscribe-section h2 {
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  font-weight: 500;
}
.subscribe-section p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}
.subscribe-section .form-inner .form-group {
  position: relative;
  margin-bottom: 0px;
  padding-right: 167px;
}
.subscribe-section .form-inner .form-group input[type='email'] {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  background: #fff;
  color: var(--text-color);
  font-size: 14px;
  border-radius: 10px;
  padding: 10px 20px;
  transition: all 500ms ease;
}
.subscribe-section .form-inner .form-group button[type='submit'] {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--title-font);
  color: #fff !important;
  text-align: center;
  border-radius: 10px;
  padding: 10px 30px;
  z-index: 1;
  transition: all 0.5s ease-in-out 0.0s;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 157px;
  background: var(--secondary-color);
  padding-left: 20px;
  padding-right: 20px;
}
.theme-btn:before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: translateX(0);
  transform-origin: left center;
  z-index: -1;
  background: var(--secondary-color);
  transition: all 500ms ease;
}
.subscribe-section .form-inner .form-group button[type='submit']:before, .subscribe-section .form-inner .form-group button[type='submit']:after {
  background: #fff;
}
.subscribe-section .form-inner .form-group button i {
  position: relative;
  display: inline-block;
  font-size: 12px;
  margin-left: 8px;
}
.subscribe-section .form-inner .form-group button[type='submit']:hover {
  color: var(--theme-color) !important;
}
.theme-btn:hover:before, .theme-btn:hover:after {
  transform: translateX(1);
  width: 50%;
}
.main-footer {
  position: relative;
  background: #F7F7F7;
}
.main-footer .widget-section {
  position: relative;
  padding: 70px 0 80px;
  border-bottom: 1px solid #E5E5E5;
}
.main-footer .widget-title {
  position: relative;
  display: block;
  margin-bottom: 10px;
}
.main-footer .widget-title h3 {
  font-size: 20px;
  line-height: 34px;
  font-weight: 500;
}
.main-footer .links-widget .links-list li {
  position: relative;
  display: block;
  margin-bottom: 11px;
}
.main-footer .links-widget .links-list li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
}
.main-footer .links-widget .links-list li a:hover {
  color: var(--theme-color);
}
.footer-bottom {
  position: relative;
  padding: 18px 0px;
}
.footer-bottom .bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-bottom .bottom-inner p {
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
}
.footer-bottom .bottom-inner p a {
  display: inline-block;
  font-weight: 600;
  color: var(--theme-color);
}
.cryptoS {
  margin: 60px 0;
}
.cptI h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 5px;
}
.cptI p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
}
.cptG {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  grid-template-rows: repeat(2, minmax(0px, 1fr));
  column-gap: 15px;
  row-gap: 15px;
  width: 100%;
}
.cptA {
  text-decoration: none;
  cursor: pointer;
  background: none;
  margin: 0;
  padding: 0;
  border: 0;
}
.cptC {
  display: flex;
  flex-direction: column;
  padding: 15px;
  border-radius: 24px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(91,97,110, 0.2);
  height: 185px;
  width: 185px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.cptTp {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.cptTp img {
  max-width: 45px;
  width: 100%;
  height: auto;
}
.cptTp h4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--title-color);
  margin: 8px 0 0;
}
.cptTp p {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  color: var(--text-color);
}
.cptBt {
  font-size: 28px;
  line-height: 40px;
  font-weight: 400;
  color: var(--theme-color);
}
.cptRd {
  color: rgb(207,32,47);
}
.cptGry {
  color: var(--text-color);
}
.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  box-shadow: inset 0 0 0 2px rgba(0, 46, 65, 0.2);
  border-radius: 50%;
  z-index: 90000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.scroll-to-top.scroll-top-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.scroll-to-top .scroll-top-inner path {
  stroke-width: 4;
  fill: transparent;
  box-sizing: border-box;
  stroke: var(--theme-color);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.scroll-to-top::after {
  position: absolute;
  content: "\f062";
  font-family: 'Font Awesome 6 Free';
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  font-weight: 900;
  color: var(--theme-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 2 transform: rotate(-180deg);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
/*-----Second Page-----*/
.sldr-inner {
  position: relative;
}
.sldrItem {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
}
.sldrItem .carousel-caption h1, .sldrItem .carousel-caption .h1 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.sldrItem .carousel-caption h4, .sldrItem .carousel-caption .h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
}
.sldrItem .btn.btn-primary.bnrBtn {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 40px;
}
.prcS, .infS, .chrtS {
  margin: 50px 0;
}
.infS h2, .chrtS h2 {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
.infS h3 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.prcS .funfact-block:nth-child(1) .inner-box {
  border-radius: 10px 0 0 10px;
  border-right: 0;
}
.prcS .funfact-block:nth-child(2) .inner-box {
  border-radius: 0;
}
.prcS .funfact-block:nth-child(3) .inner-box {
  border-radius: 0 10px 10px 0;
  border-left: 0;
}
.prcCalc {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 8px 0 #e2e2e2;
  padding: 15px;
}
.prcB {
  margin-bottom: 6px;
}
.calcIpt {
  width: 100%;
  height: 32px;
  font-size: 16px;
  font-weight: 400;
  color: #585858;
  border: 1px solid #dedede;
  border-radius: 8px;
  padding: 6px 15px;
}
.calcIpt:focus, .chtD select:focus {
  border-color:var(--theme-color);
}
.prcP {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
}
#RATESPAN, #RATESPAN2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color);
}
.chtD {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.chtD h4, .chtD span, .chtD a {
  font-size: 16px;
  line-height: normal;
  font-weight: 600;
  color: var(--text-color);
}
.chtD a.active, .chtD a:hover {
  color: var(--theme-color);
}
.chtD select {
  background-color: #ffffff;
  border: 1px solid #dedede;
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  color: #000;
}
#btnShow, #btnShow2 {
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
  background-color: var(--theme-color);
  padding: 4px 25px;
  border-radius: 8px;
  color: #ffffff;
  transition: all 0.4s ease-in-out;
}
#btnShow:hover, #btnShow2:hover {
  background-color: #1a612c;
}
.tblsG {
  background-color: #f3f3f3;
  padding: 50px 0;
}
.tblSL {
  margin: 50px 0;
}
.tblSL .sec-title {
  flex-direction: column;
}

/** contactus page css start **/
.page-title{
  padding: 200px 0 0;
  position: relative;
}
.page-title h1{
  position: relative;
  display: block;
  font-size: 56px;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 10px;
}
.page-title .bread-crumb li{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  margin-right: 15px;
}
.page-title .bread-crumb li:last-child{
  margin-right: 0px;
}
.page-title .bread-crumb li a{
  position: relative;
  display: inline-block;
  color: var(--title-color);
}
.page-title .bread-crumb li a:hover{
  color: var(--theme-color);
}
.page-title .bread-crumb li:before{
  position: absolute;
  content: '';
  background: var(--secondary-color);
  width: 4px;
  height: 1px;
  top: 13px;
  right: -11px;
}
.page-title .bread-crumb li:last-child:before{
  display: none;
}
.page-title .pattern-layer{
  position: absolute;
  left: 46%;
  top: 49%;
  transform: translate(-50%,-50%);
  width: 140px;
  height: 160px;
  background-repeat: no-repeat;
}
.rotate-me {
  animation-name: rotateme; 
  animation-duration: 24s; 
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  
  -webkit-animation-name: rotateme; 
  -webkit-animation-duration: 24s; 
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  
  -moz-animation-name: rotateme; 
  -moz-animation-duration: 24s; 
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  
  -ms-animation-name: rotateme; 
  -ms-animation-duration: 24s; 
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  
  -o-animation-name: rotateme; 
  -o-animation-duration: 24s; 
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}
@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }
  to { 
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
  }
  to { 
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotateme {
  from {
    -moz-transform: rotate(0deg);
  }
  to { 
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes rotateme {
  from {
    -o-transform: rotate(0deg);
  }
  to { 
    -o-transform: rotate(360deg);
  }
}
.contactS {
  padding: 90px 0 100px;
}
.sngl_info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.iconB {
  background-color: var(--theme-color);
  display: inline-block;
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 30px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
}
.ct_info {
  display: inline-block;
  flex: 1 1 60%;
  width: 60%;
}
.ct_info h4 {
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}
.ct_info p {
  position: relative;
  display: block;
  max-width: 250px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--text-color);
}
.ct_info a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--text-color);
}
.ct_info a:hover {
  color: var(--theme-color);
}
.form-inner {
  margin-top: 50px;
}
.contactS .form-inner .form-group {
  position: relative;
  display: block;
  margin-bottom: 22px;
}
.contactS .form-inner .form-group label {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  margin-bottom: 8px;
}
.contactS .form-inner .form-group label span {
  color: var(--theme-color);
}
.contactS .form-inner .form-group input[type='text'],
.contactS .form-inner .form-group input[type='email'],
.contactS .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid rgba(229, 229, 229, 1);
  border-radius: 50px;
  font-size: 16px;
  color: var(--title-color);
  padding: 10px 20px;
  transition: all 500ms ease;
}
.contactS .form-inner .form-group textarea {
  height: 195px;
  resize: none;
  border-radius: 20px;
}
.contactS .form-inner .form-group input:focus,
.contactS .form-inner .form-group textarea:focus {
  border-color: var(--theme-color) !important;
}
.message-btn {
  text-align: center;
  padding-top: 18px;
}
.theme-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: #fff !important;
  text-align: center;
  border-radius: 40px;
  padding: 10px 30px;
  background: var(--theme-color);
  z-index: 1;
  transition: all 0.5s ease-in-out 0.0s;
}
.theme-btn:before {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: translateX(0);
  transform-origin: left center;
  z-index: -1;
  background: var(--secondary-color);
  transition: all 500ms ease;
}
.theme-btn:after {
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  right: 0px;
  top: 0px;
  transform: translateX(0);
  transform-origin: right center;
  z-index: -1;
  background: var(--secondary-color);
  transition: all 500ms ease;
}
.theme-btn:hover {
  background: var(--secondary-color);
  color: #fff !important;
}
.theme-btn:hover:before, .theme-btn:hover:after {
  transform: translateX(1);
  width: 50%;
}
/**legel pages css**/
.lglS {
  padding: 120px 0 50px;
}
.lglC h1 {
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 4px;
}
.lglC h2 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 4px;
}
.lglC h3 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 4px;
}
.lglC h4 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 4px;
}
.lglC h5, .lglC h6 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 4px;
}
.lglC p {
  margin-bottom: 15px;
}
.lglC p, .lglC ul li, .lglC ol li {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: var(--text-color);
}
.lglC a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: var(--theme-color);
}
.lglC ul, .lglC ul li {
  list-style-position: inside;
  list-style-type: circle;
}
.lglC ol, .lglC ul {
  margin-bottom: 15px;
}
.lglC ol, .lglC ol li {
  list-style-position: inside;
  list-style-type: numeric;
  padding: 0;
}
.lglC ul li, .lglC ol li {
  margin-bottom: 4px;
}