@import url("https://fonts.googleapis.com/css2?family=Lilita+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*--------------------------------------------------------------
# base
--------------------------------------------------------------*/
::-moz-selection {
  color: #f8f6f1;
  background: rgba(224, 0, 0, 0.3);
}
::selection {
  color: #f8f6f1;
  background: rgba(224, 0, 0, 0.3);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #f8f6f1;
  background-color: black;
  line-height: 1.6;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 480px) {
  .wow {
    -webkit-animation-name: none !important;
    animation-name: none !important;
    visibility: visible !important;
  }
}
section {
  overflow: hidden;
}

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

audio,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lilita One", sans-serif;
  margin: 0;
  color: #f8f6f1;
  font-weight: 400;
  line-height: 1.2;
}

p {
  margin: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

.scroll-top {
  width: 35px;
  height: 35px;
  background-color: #e00000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  border-radius: 7px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
}
.scroll-top img {
  height: 18px;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  fill: #ffffff;
}
.scroll-top:focus,
.scroll-top:hover {
  color: #fff;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(224, 0, 0, 0.5);
  box-shadow: 0 0 0 0.25rem rgba(224, 0, 0, 0.5);
}

/*--------------------------------------------------------------
  ##  Page Loader
  --------------------------------------------------------------*/
.page-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: #d6c7b1;
}

.lds-grid {
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.lds-grid div {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e00000;
  -webkit-animation: lds-grid 1.2s linear infinite;
  animation: lds-grid 1.2s linear infinite;
}

.lds-grid div:nth-child(1) {
  top: 8px;
  left: 8px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.lds-grid div:nth-child(2) {
  top: 8px;
  left: 32px;
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.lds-grid div:nth-child(3) {
  top: 8px;
  left: 56px;
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.lds-grid div:nth-child(4) {
  top: 32px;
  left: 8px;
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.lds-grid div:nth-child(5) {
  top: 32px;
  left: 32px;
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.lds-grid div:nth-child(6) {
  top: 32px;
  left: 56px;
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s;
}

.lds-grid div:nth-child(7) {
  top: 56px;
  left: 8px;
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.lds-grid div:nth-child(8) {
  top: 56px;
  left: 32px;
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s;
}

.lds-grid div:nth-child(9) {
  top: 56px;
  left: 56px;
  -webkit-animation-delay: -1.6s;
  animation-delay: -1.6s;
}

@-webkit-keyframes lds-grid {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes lds-grid {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
/*--------------------------------------------------------------
  ## btn-main
--------------------------------------------------------------*/
.btn-main {
  text-decoration: none;
  display: inline-block;
  border: 0;
  background-color: #e00000;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 11px 30px;
  border-radius: 50px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-main:hover,
.btn-main:focus {
  background-color: #940000;
  color: #ffffff;
}

.btn-main-2 {
  text-decoration: none;
  display: inline-block;
  border: 0;
  background-color: #022d47;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 11px 30px;
  border-radius: 50px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-main-2:hover,
.btn-main-2:focus {
  background-color: #011d2e;
  color: #ffffff;
}

/*--------------------------------------------------------------
# navbar
--------------------------------------------------------------*/
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: black;
}

.navbar {
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0px;
}
@media only screen and (max-width: 991px) {
  .navbar {
    padding: 10px 0px;
  }
}
@media (max-width: 767px) {
  .navbar {
    padding: 10px 0px;
  }
}
@media (max-width: 482px) {
  .navbar {
    padding: 10px 0px;
  }
}
.navbar .navbar-brand {
  padding: 0;
  text-decoration: none;
  font-size: 25px;
  font-weight: 700;
  color: #ffffff;
}
.navbar .navbar-brand img {
  height: 65px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-brand img {
    height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-brand img {
    height: 55px;
  }
}
@media only screen and (max-width: 482px) {
  .navbar .navbar-brand img {
    height: 50px;
  }
}
.navbar .navbar-nav {
  /** Large devices (desktops, 992px and up) **/
}
@media (min-width: 992px) {
  .navbar .navbar-nav {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar .navbar-nav .nav-item:not(:last-child) {
  margin-right: 30px;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item {
    margin-left: 16px;
  }
}
.navbar .navbar-nav .nav-item a {
  text-decoration: none;
  font-size: 15px;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
}
.navbar .navbar-nav .nav-item a:hover,
.navbar .navbar-nav .nav-item a.active {
  color: #000000;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item a {
    display: inline-block;
    margin: 4px 0px;
    padding: 6px 0;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 0;
  }
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid rgba(201, 2, 234, 0.2);
    background-color: #000;
    z-index: 9;
    padding: 15px 12px 20px 12px;
    border-radius: 40px 40px 40px 40px;
  }
}
.navbar .navbar-toggler {
  padding: 0;
}
.navbar .navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
.navbar .dropdown-menu {
  background: #000;
  border: 1.5px solid #333;
  padding: 14px 0px;
  border-radius: 7px;
}
.navbar .dropdown-menu li:not(:last-child) {
  margin-bottom: 10px;
}
.navbar .dropdown-menu a {
  padding: 4px 16px !important;
  text-decoration: none;
  color: #f8f6f1;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px !important;
}
.navbar .dropdown-menu a img {
  height: 15px;
  margin-right: 12px;
  min-width: 23px;
}
.navbar .dropdown-menu a:hover,
.navbar .dropdown-menu a:focus {
  background-color: transparent;
  color: #e00000;
}
.navbar .dropdown-menu a.active {
  background-color: transparent;
  color: #e00000;
}
@media only screen and (max-width: 991px) {
  .navbar .dropdown-menu a {
    margin: 0px 0px !important;
  }
}
@media only screen and (min-width: 992px) {
  .navbar .nav-center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.navbar .nav-socials .nav-item a {
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #07e000;
  border: 1px solid #07e000;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.navbar .nav-socials .nav-item a svg {
  font-size: 19px;
  color: #ffffff;
}
.navbar .nav-socials .nav-item a:hover {
  background-color: transparent;
}

.sticky {
  position: fixed;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sticky .navbar {
  margin-top: 0;
  padding: 10px 0px;
}
@media only screen and (max-width: 991px) {
  .sticky .navbar {
    padding: 10px 0px;
  }
}
@media (max-width: 767px) {
  .sticky .navbar {
    padding: 10px 0px;
  }
}
@media (max-width: 482px) {
  .sticky .navbar {
    padding: 10px 0px;
  }
}
.sticky .navbar .navbar-brand {
  padding: 0;
  text-decoration: none;
}
.sticky .navbar .navbar-brand img {
  height: 65px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .sticky .navbar .navbar-brand img {
    height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .sticky .navbar .navbar-brand img {
    height: 55px;
  }
}
@media only screen and (max-width: 482px) {
  .sticky .navbar .navbar-brand img {
    height: 50px;
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

.animate {
  animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateY(1.1rem);
    transform: translateY(1.1rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0rem);
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1.1rem);
    transform: translateY(1.1rem);
    opacity: 0;
  }
}
@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}
/*--------------------------------------------------------------
  ## hero-area
--------------------------------------------------------------*/
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.hero-area {
  padding-top: 140px;
  position: relative;
  padding-bottom: 60px;
  background-color: black;
  /* background-color: #0093e9;
  background-image: linear-gradient(160deg, #0093e9 0%, #80d0c7 100%);
  background-image: -webkit-gradient(linear, left bottom, left top, from(#00c6fb), to(#005bea));
  background-image: linear-gradient(to top, #00c6fb 0%, #005bea 100%); */
}
@media only screen and (max-width: 991px) {
  .hero-area {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area {
    padding-bottom: 70px;
  }
}
.hero-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .hero-area {
    text-align: center;
  }
}
.hero-area .hero-inner {
  position: relative;
}
.hero-area .hero-txt h1 {
  font-size: 80px;
  letter-spacing: 2px;
  text-shadow: 4px 4px 0px #000;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1399px) {
  .hero-area .hero-txt h1 {
    font-size: 70px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-area .hero-txt h1 {
    font-size: 65px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-txt h1 {
    font-size: 50px;
    margin-bottom: 15px;
  }
}
.hero-area .hero-txt p {
  font-size: 26px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-txt p {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.hero-area .btn-hero {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  background-color: #034d79;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.hero-area .btn-hero img {
  height: 55px;
  margin-right: 10px;
  padding: 10px;
  background-color: #ffffff;
}
.hero-area .btn-hero span {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  padding-right: 20px;
}
.hero-area .btn-hero:hover {
  background-color: #e00000;
}

/*--------------------------------------------------------------
  ## abt-sec
--------------------------------------------------------------*/
.abt-sec {
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .abt-sec {
    padding-bottom: 35px;
  }
}
.abt-sec h2 {
  font-size: 44px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .abt-sec h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .abt-sec h2 {
    font-size: 35px;
    margin-bottom: 14px;
  }
}
.abt-sec p:not(:last-child) {
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
  ## how-buy
--------------------------------------------------------------*/
.sec-t {
  text-align: center;
}
.sec-t h2 {
  font-size: 52px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .sec-t h2 {
    font-size: 45px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-t h2 {
    font-size: 35px;
    margin-bottom: 25px;
  }
}

/*--------------------------------------------------------------
  ## video-secs
--------------------------------------------------------------*/
.video-secs {
  padding: 80px 0px;
}
@media only screen and (max-width: 991px) {
  .video-secs {
    padding: 60px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .video-secs {
    padding: 50px 0px;
  }
}
.video-secs .video-inner {
  border: 2px solid #e00000;
  border-radius: 20px;
  overflow: hidden;
}

.how-buy {
  padding: 80px 0px;
  /* background-color: #002868; */
  /* background-image: -webkit-gradient(linear, left bottom, left top, from(#09203f), to(#537895)); */
  /* background-image: linear-gradient(to top, #09203f 0%, #537895 100%); */
}
@media only screen and (max-width: 991px) {
  .how-buy {
    padding: 60px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .how-buy {
    padding: 50px 0px;
  }
}
.how-buy .buy-single {
  -webkit-box-shadow: inset 0 0 25px #ad0000;
  box-shadow: inset 0 0 25px #ad0000;
  border: 1px solid #c70000;
  height: 100%;
  padding: 25px 25px;
  border-radius: 16px;
  padding-bottom: 0;
}
.how-buy .buy-single .number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #e00000;
  font-size: 20px;
  font-weight: 700;
  width: 36px;
  height: 36px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 20px;
}
.how-buy .buy-single h5 {
  font-size: 20px;
  margin-bottom: 16px;
}
.how-buy .buy-single p {
  margin-bottom: 26px;
}
.how-buy .buy-single-1 {
  background: rgba(255, 255, 255, 0.1);
  height: 100%;
  padding: 40px 40px;
  border-radius: 16px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .how-buy .buy-single-1 {
    padding: 30px 30px;
  }
}
.how-buy .buy-single-1 .btn-main {
  min-width: 200px;
}
.how-buy .buy-single-1 h5 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-bottom: 30px;
}

.contract-adress {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 20px;
  border-radius: 16px;
  background-color: #181a20;
  border: 1px solid #e00000;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .contract-adress {
    margin-top: 22px;
  }
}
.contract-adress .firt span {
  display: inline-block;
  font-size: 16px;
  color: #7c7c7e;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .contract-adress .firt span {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
.contract-adress .firt p {
  font-size: 23px;
  word-break: break-all;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .contract-adress .firt p {
    font-size: 19px;
  }
}

.copy-button {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e00000;
  outline: none;
  border: 0;
  color: #000;
  font-size: 16px;
  border-radius: 10px;
}
@media only screen and (max-width: 991px) {
  .copy-button {
    margin-top: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .copy-button {
    height: 55px;
    height: 55px;
  }
}
.copy-button img {
  height: 30px;
}
@media only screen and (max-width: 767px) {
  .copy-button img {
    height: 20px;
  }
}

/*--------------------------------------------------------------
  ## tokeno
--------------------------------------------------------------*/
.tokeno {
  padding: 80px 0px;
}
@media only screen and (max-width: 991px) {
  .tokeno {
    padding: 60px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .tokeno {
    padding: 50px 0px;
  }
}
.tokeno .token-single {
  background-color: #450202;
  padding: 25px 25px;
  border-radius: 18px;
  overflow: hidden;
}
.tokeno .token-single span {
  position: relative;
  display: inline-block;
  color: #b3b3b5;
  font-size: 16px;
  margin-bottom: 22px;
}
.tokeno .token-single h5 {
  position: relative;
  font-size: 23px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .tokeno .token-single h5 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# faqs
--------------------------------------------------------------*/
.faqs {
  position: relative;
  padding: 80px 0px;
  /* background-color: #005A8D; */
}
@media only screen and (max-width: 767px) {
  .faqs {
    padding: 50px 0px;
  }
}
.faqs .rt-img {
  position: absolute;
  top: 300px;
  right: 0;
  max-width: 140px;
  z-index: -1;
}
@media only screen and (max-width: 1613px) {
  .faqs .rt-img {
    max-width: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .faqs .rt-img {
    display: none;
  }
}
.faqs .lt-img {
  position: absolute;
  bottom: 200px;
  left: 0;
  max-width: 140px;
  z-index: -1;
}
@media only screen and (max-width: 1613px) {
  .faqs .lt-img {
    max-width: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .faqs .lt-img {
    display: none;
  }
}
.faqs .faq-con .accordion-item {
  border: 0;
  border-radius: 0;
  background-color: transparent;
  border-bottom: 1px solid #e00000;
  padding-bottom: 15px;
}
.faqs .faq-con .accordion-item:not(:last-child) {
  margin-bottom: 44px;
}
@media only screen and (max-width: 767px) {
  .faqs .faq-con .accordion-item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.faqs .faq-con .accordion-item .accordion-header .accordion-button {
  padding-left: 0;
  padding-right: 0;
  color: #ffffff;
  background-color: transparent;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
  .faqs .faq-con .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
  }
}
@media only screen and (max-width: 482px) {
  .faqs .faq-con .accordion-item .accordion-header .accordion-button {
    font-size: 17px;
  }
}
.faqs .faq-con .accordion-item .accordion-header .accordion-button::after {
  -webkit-transform: none;
  transform: none;
  content: "+";
  background-image: none;
  width: 55px;
  height: 40px;
  background-color: #e00000;
  border-radius: 7px;
  text-align: center;
  padding-top: 3px;
  font-size: 25px;
}
@media only screen and (max-width: 767px) {
  .faqs .faq-con .accordion-item .accordion-header .accordion-button::after {
    width: 35px;
    height: 25px;
    font-size: 15px;
    padding-top: 2px;
  }
}
.faqs .faq-con .accordion-item .accordion-header .accordion-button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.faqs
  .faq-con
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  color: #e00000;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.faqs
  .faq-con
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "-";
  color: #fff;
}
.faqs .faq-con .accordion-item .accordion-body {
  padding-top: 20px;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  .faqs .faq-con .accordion-item .accordion-body {
    padding-top: 10px;
  }
}
.faqs .faq-con .accordion-item .accordion-body p {
  font-size: 15px;
  color: #f8f6f1;
}
.faqs .faq-con .accordion-item .accordion-body p span {
  display: inline-block;
  color: #ffffff;
}

/*--------------------------------------------------------------
  ## whitepaper-sec
--------------------------------------------------------------*/
.whitepaper-sec {
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .whitepaper-sec {
    padding: 50px 0px;
  }
}
.whitepaper-sec .white-inner {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 50px 25px;
  background: var(
    --liniar,
    linear-gradient(0deg, #050000 -10.68%, #e00000 126.12%)
  );
  border-radius: 20px;
}
.whitepaper-sec .white-inner h2 {
  font-size: 54px;
  text-transform: uppercase;
  font-weight: 800;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .whitepaper-sec .white-inner h2 {
    font-size: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .whitepaper-sec .white-inner h2 {
    font-size: 35px;
    margin-bottom: 25px;
  }
}
.whitepaper-sec .white-inner .btn-whitepaper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #e00000;
  padding: 13px 30px;
  border-radius: 50px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.whitepaper-sec .white-inner .btn-whitepaper span {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-right: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.whitepaper-sec .white-inner .btn-whitepaper img {
  height: 22px;
}
.whitepaper-sec .white-inner .btn-whitepaper:hover {
  background-color: #ad0000;
}

.btn-abi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #dbe0fe;
  padding: 11px 10px;
  border-radius: 16px;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-abi img {
  width: 35px;
  margin-bottom: 10px;
}
.btn-abi span {
  font-family: "Lilita One", sans-serif;
  letter-spacing: 1px;
  color: #000;
  font-size: 18px;
  font-weight: 400;
}
.btn-abi:hover {
  background-color: #d7fad4;
}

/*--------------------------------------------------------------
  ## logo-slider
--------------------------------------------------------------*/
.logo-slider {
  padding-bottom: 80px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .logo-slider {
    padding-bottom: 30px;
  }
}
.logo-slider .swiper-slide a {
  display: block;
  width: 100%;
}
.logo-slider .swiper-slide a img {
  width: 200px;
  height: 46px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .logo-slider .swiper-slide a img {
    width: 160px;
  }
}

.logo-slider .swiper-slide {
  -webkit-transition: -webkit-transform 0.5s linear;
  transition: -webkit-transform 0.5s linear;
  transition: transform 0.5s linear;
  transition: transform 0.5s linear, -webkit-transform 0.5s linear;
}

/*--------------------------------------------------------------
  ## main-footer
--------------------------------------------------------------*/
.main-footer {
  padding-top: 30px;
}
@media only screen and (max-width: 991px) {
  .main-footer {
    padding-top: 15px;
  }
}
.main-footer .footer-txt {
  text-align: center;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
}
.main-footer .footer-txt p {
  font-size: 14px;
}
.main-footer .footer-txt .footer-logo {
  height: 170px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .main-footer .footer-txt .footer-logo {
    height: 150px;
  }
}

.footer-list {
  text-align: end;
}
@media only screen and (max-width: 991px) {
  .footer-list {
    text-align: start;
  }
}
.footer-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .footer-list ul {
    padding-bottom: 30px;
  }
}
.footer-list ul li {
  display: inline-block;
  font-size: 15px;
}
.footer-list ul li:not(:last-child) {
  margin-right: 15px;
}
.footer-list ul a {
  color: #f8f6f1;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.footer-list ul a:hover {
  color: #e00000;
}

.footer-social {
  border-top: 1px solid rgba(233, 233, 234, 0.1);
  text-align: center;
  padding: 30px 0px;
}
.footer-social a {
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #e00000;
  border: 1px solid #e00000;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.footer-social a:not(:last-child) {
  margin-right: 10px;
}
.footer-social a svg {
  font-size: 19px;
  color: #ffffff;
}
.footer-social a:hover {
  background-color: transparent;
}
/*# sourceMappingURL=main.css.map */
