@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400;1,9..40,500;1,9..40,600;1,9..40,700&amp;family=Outfit:wght@400;500;600;700;800&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=DynaPuff:wght@400..700&amp;display=swap");
/*--------------------------------------------------------------
# base
--------------------------------------------------------------*/
::-moz-selection {
  color: #F7F7F7;
  background: rgba(255, 115, 2, 0.6);
}
::selection {
  color: #F7F7F7;
  background: rgba(255, 115, 2, 0.6);
}

html {
  scroll-padding-top: 20px;
}

body {
  position: relative;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  background-color: #000000;
  color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  top: 27.5%;
  left: 23.9%;
  background-color: #F558F4;
  background-color: #ff7302;
  -webkit-filter: blur(150px);
  -o-filter: blur(150px);
  filter: blur(150px);
  width: 270px;
  height: 270px;
  border-radius: 100%;
  position: fixed;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  body::before {
    width: 150px;
    height: 150px;
    -webkit-filter: blur(70px);
            filter: blur(70px);
  }
}
body::after {
  content: "";
  top: 42.8%;
  right: 25%;
  background-color: #ff7302;
  -webkit-filter: blur(150px);
  -o-filter: blur(150px);
  filter: blur(150px);
  width: 270px;
  height: 270px;
  border-radius: 100%;
  position: fixed;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  body::after {
    width: 150px;
    height: 150px;
    -webkit-filter: blur(70px);
            filter: blur(70px);
  }
}

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

section {
  overflow: hidden;
}

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

i,
span,
a {
  display: inline-block;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DynaPuff", system-ui;
  font-weight: normal;
  letter-spacing: 1px;
  margin: 0;
  color: #F7F7F7;
}

p {
  margin: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  font-weight: normal;
}

/*--------------------------------------------------------------
  ##  Page Loader
  --------------------------------------------------------------*/
  .page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* Angepasst von 99999999 auf 9999 */
    background-color: #000;
  }
  
  .loader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6rem;
    height: 6rem; /* Hinzugefügt für konsistente Höhe */
    transform: translate(-50%, -50%);
  }
  
  .loader::before,
  .loader::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    animation: pulsOut 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.75));
    will-change: box-shadow, opacity; /* Hinzugefügt für Performance-Optimierung */
  }
  
  .loader::before {
    width: 100%;
    height: 100%; /* Ersetzt padding-bottom für konsistente Größe */
    box-shadow: inset 0 0 0 1rem #ff7302;
    animation: pulsIn 1.8s ease-in-out infinite; /* Korrigierte Animation */
  }
  
  .loader::after {
    width: calc(100% - 2rem);
    height: calc(100% - 2rem); /* Ersetzt padding-bottom für konsistente Größe */
    box-shadow: 0 0 0 0 #fff;
  }
  
  @keyframes pulsIn {
    0% {
      box-shadow: inset 0 0 0 1rem #ff7302;
      opacity: 1;
    }
    50%, 100% {
      box-shadow: inset 0 0 0 0 #fff;
      opacity: 0;
    }
  }
  
  @keyframes pulsOut {
    0%, 50% {
      box-shadow: 0 0 0 0 #fff;
      opacity: 0;
    }
    100% {
      box-shadow: 0 0 0 1rem #fff;
      opacity: 1;
    }
  }
  
/*--------------------------------------------------------------
  ## btn-outline
--------------------------------------------------------------*/
.btn-outline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #FFFFFF;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #000000;
  padding: 12px 27px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-outline span {
  margin: auto;
}
.btn-outline svg {
  margin-left: auto;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-outline:hover {
  color: #ff7302;
  border-color: #ff7302;
}
.btn-outline:hover svg path {
  fill: #ff7302;
}

.btn-outline-light {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #ffffff;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  padding: 10px 24px;
  width: 100%;
  max-width: 223px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-outline-light svg {
  margin-left: 7px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-outline-light:hover {
  color: #ff7302;
  border-color: #ffffff;
  background-color: #ffffff;
}
.btn-outline-light:hover svg path {
  fill: #ff7302;
}

.btn-round {
  display: inline-block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  font-style: normal;
  font-weight: 400;
  border-radius: 50px;
  border: 2.676px solid #ff7302;
  padding: 13px 26px;
  width: 100%;
  max-width: 260px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 767px) {
  .btn-round {
    padding: 11px 25px;
    font-size: 15px;
  }
}
.btn-round:hover {
  background-color: #ff7302;
  color: #FFFFFF;
}

.btn-round-light {
  display: inline-block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  background-color: #fff;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-style: normal;
  font-weight: 400;
  border-radius: 50px;
  padding: 12px 46px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 767px) {
  .btn-round-light {
    padding: 11px 25px;
    font-size: 15px;
  }
}
.btn-round-light:hover {
  border-color: #ff7302;
  background-color: #ff7302;
  color: #FFFFFF;
}

.btn-red {
  background-color: #F558F4;
  text-align: center;
  color: #F7F7F7;
  padding: 13px 50px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-red:hover {
  background-color: #ff7302;
  color: #F7F7F7;
}

.btn-2 {
  background-color: #ff7302;
  text-align: center;
  color: #F7F7F7;
  padding: 13px 50px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-2:hover {
  background-color: #000000;
  color: #F7F7F7;
}

.btn-2-outline {
  background-color: #000000;
  text-align: center;
  color: #F7F7F7;
  padding: 12px 50px;
  border-radius: 50px;
  border: 1px solid #ff7302;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-2-outline:hover {
  background-color: #ff7302;
  color: #F7F7F7;
}

.btn-red-outline {
  background-color: #000000;
  text-align: center;
  color: #F7F7F7;
  padding: 12px 50px;
  border-radius: 50px;
  border: 1px solid #F558F4;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-red-outline:hover {
  background-color: #F558F4;
  color: #F7F7F7;
}

/*--------------------------------------------------------------
# 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: #000;
}

.navbar {
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 5px 0;
}
@media only screen and (max-width: 1199px) {
  .navbar {
    padding: 10px 0px;
  }
}
@media only screen and (max-width: 991px) {
  .navbar {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .navbar {
    padding: 8px 0;
  }
}
@media (max-width: 482px) {
  .navbar {
    padding: 8spx 0;
  }
}
.navbar .navbar-brand {
  padding: 0;
  text-decoration: none;
  color: #ff7302;
  font-family: "DynaPuff", system-ui;
  text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, 2px -2px 0px #fff, -2px 2px 0px #000;
  font-size: 42px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-brand {
    font-size: 32px;
  }
}
.navbar .navbar-brand img {
  height: 45px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-brand img {
    height: 40px;
  }
}
@media only screen and (max-width: 482px) {
  .navbar .navbar-brand img {
    height: 35px;
  }
}
.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;
  margin-left: 34px;
}
@media only screen and (max-width: 1199px) {
  .navbar .navbar-nav .nav-item {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item {
    margin-left: 16px;
  }
}
.navbar .navbar-nav .nav-item a {
  font-family: "DynaPuff", system-ui;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #F7F7F7;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
  font-weight: 600;
}
.navbar .navbar-nav .nav-item a:hover, .navbar .navbar-nav .nav-item a.active {
  color: #ff7302;
}
@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%;
    z-index: 9;
    padding: 15px 12px 20px 12px;
    background-color: #0b0f1b;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9;
  }
}
.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;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  -webkit-box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sticky .navbar {
  padding: 5px 0;
}
@media only screen and (max-width: 1199px) {
  .sticky .navbar {
    padding: 10px 0px;
  }
}
@media only screen and (max-width: 991px) {
  .sticky .navbar {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .sticky .navbar {
    padding: 8px 0;
  }
}
@media (max-width: 482px) {
  .sticky .navbar {
    padding: 8spx 0;
  }
}
.sticky .navbar .navbar-brand {
  padding: 0;
  text-decoration: none;
}

@-webkit-keyframes glowing {
  0% {
    background-color: #b20000;
    -webkit-box-shadow: 0 0 3px #b20000;
            box-shadow: 0 0 3px #b20000;
  }
  50% {
    background-color: #ff0000;
    -webkit-box-shadow: 0 0 40px #ff0000;
            box-shadow: 0 0 40px #ff0000;
  }
  100% {
    background-color: #b20000;
    -webkit-box-shadow: 0 0 3px #b20000;
            box-shadow: 0 0 3px #b20000;
  }
}

@keyframes glowing {
  0% {
    background-color: #b20000;
    -webkit-box-shadow: 0 0 3px #b20000;
            box-shadow: 0 0 3px #b20000;
  }
  50% {
    background-color: #ff0000;
    -webkit-box-shadow: 0 0 40px #ff0000;
            box-shadow: 0 0 40px #ff0000;
  }
  100% {
    background-color: #b20000;
    -webkit-box-shadow: 0 0 3px #b20000;
            box-shadow: 0 0 3px #b20000;
  }
}
.nav-social .nav-item .apply-btn {
  font-family: "DynaPuff", system-ui;
  text-decoration: none;
  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;
  border-radius: 50px;
  text-align: center;
  background-color: transparent;
  padding: 8px 38px !important;
  text-transform: uppercase;
  font-size: 13px !important;
  font-weight: 700 !important;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  -webkit-animation: glowing 1500ms infinite;
          animation: glowing 1500ms infinite;
}
.nav-social .nav-item .apply-btn:hover {
  background-color: #ff7302;
  color: #fff !important;
}
.nav-social .nav-item .apply-btn img {
  height: 14px;
  margin-left: 10px;
}

/*--------------------------------------------------------------
  ## hero-area
--------------------------------------------------------------*/
.hero-area {
  position: relative;
  background-image: radial-gradient(circle farthest-corner at 10% 20%, #ff7302 0%, rgb(4, 0, 4) 90%);
  width: 100%;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 991px) {
  .hero-area {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}
.hero-area .hero-text {
  position: relative;
  padding-top: 80px;
}
@media only screen and (max-width: 991px) {
  .hero-area .hero-text {
    text-align: center;
    padding-top: 0;
  }
}
.hero-area .hero-text h1 {
  color: #ff7302;
  font-family: "DynaPuff", system-ui;
  font-size: 70px;
  line-height: 1.1;
  font-style: normal;
  font-weight: 700;
  text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, 2px -2px 0px #fff, -2px 2px 0px #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1399px) {
  .hero-area .hero-text h1 {
    font-size: 65px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-area .hero-text h1 {
    font-size: 57px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-area .hero-text h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-text h1 {
    font-size: 42px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 482px) {
  .hero-area .hero-text h1 {
    font-size: 35px;
  }
}
.hero-area .hero-text h1 span {
  background: linear-gradient(87.65deg, #ff7302 -8.44%, #badaf7 97.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}
.hero-area .hero-text p {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-text p {
    margin-bottom: 10px;
  }
}
.hero-area .hero-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -6px;
  margin-right: -6px;
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hero-area .hero-btn a {
  margin-left: 6px;
  margin-right: 6px;
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.55);
          box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.55);
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-btn a {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
  ## case
--------------------------------------------------------------*/
.case {
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .case {
    padding: 50px 0px;
  }
}
.case .sec-t {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  .case .sec-t {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .case .sec-t {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .case .sec-t {
    margin-bottom: 40px;
  }
}
.case .sec-t h2 {
  font-family: "DynaPuff", system-ui;
  font-size: 60px;
  text-transform: uppercase;
  color: #F7F7F7;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  font-weight: 700;
  text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, 2px -2px 0px #fff, -2px 2px 0px #fff;
  color: #000;
}
@media only screen and (max-width: 1199px) {
  .case .sec-t h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .case .sec-t h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .case .sec-t h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .case .sec-t h2 {
    font-size: 33px;
  }
}
.case .sec-t p {
  color: #ffd25f;
  letter-spacing: 2px;
}
@media only screen and (max-width: 767px) {
  .case .sec-t p {
    letter-spacing: 1px;
  }
}

.case-single {
  background: #171717;
  -webkit-box-shadow: inset 0 0 25px #000;
          box-shadow: inset 0 0 25px #000;
  padding: 20px;
  text-align: center;
  height: 100%;
  text-align: center;
  border-radius: 20px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.case-single .case-in {
  -webkit-box-shadow: inset 0 0 25px #000;
          box-shadow: inset 0 0 25px #000;
  padding: 25px;
  border-radius: 18px;
  background: #1d1d1d;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.case-single img {
  margin-top: auto;
}
.case-single span {
  margin-left: auto;
  margin-right: auto;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  border: 2px solid #ff7302;
  color: #ff7302;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.case-single h3 {
  font-family: "DynaPuff", system-ui;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  color: #F7F7F7;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .case-single h3 {
    font-size: 20px;
    margin-bottom: 18px;
  }
}
.case-single p {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .case-single p {
    font-size: 15px;
    font-weight: 400;
  }
}

/* Define the keyframe animation */
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25%, 75% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25%, 75% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
/*--------------------------------------------------------------
  ## table
--------------------------------------------------------------*/
/* Custom styling for the table */

/*--------------------------------------------------------------
  ## anytime
--------------------------------------------------------------*/

/*--------------------------------------------------------------
  ## video-cta
--------------------------------------------------------------*/
.video-cta {
  padding: 80px 0px;
}
@media only screen and (max-width: 991px) {
  .video-cta {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .video-cta {
    padding: 50px 0px;
  }
}
.video-cta .sec-t {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .video-cta .sec-t {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .video-cta .sec-t {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .video-cta .sec-t {
    margin-bottom: 30px;
  }
}
.video-cta .sec-t h2 {
  font-family: "DynaPuff", system-ui;
  font-weight: 700;
  font-size: 70px;
  color: #000000;
  text-transform: uppercase;
  text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, 2px -2px 0px #fff, -2px 2px 0px #fff;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  .video-cta .sec-t h2 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 991px) {
  .video-cta .sec-t h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .video-cta .sec-t h2 {
    font-size: 46px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 482px) {
  .video-cta .sec-t h2 {
    font-size: 40px;
  }
}
.video-cta .sec-t h2 span {
  color: #ffd25f;
}
.video-cta .sec-t p {
  color: #f2f2f3;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 2px;
  color: #ffea00;
}
@media only screen and (max-width: 767px) {
  .video-cta .sec-t p {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
  }
}
.video-cta .abt-txxt p {
  font-size: 15px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .video-cta .abt-txxt p {
    margin-bottom: 24px;
  }
}

.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: #e86700;
  padding: 11px 10px;
  border-radius: 16px;
  border: 2px solid #ff7302;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.btn-abi img {
  width: 35px;
  margin-bottom: 10px;
}
.btn-abi span {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
}
.btn-abi:hover {
  background-color: rgba(255, 115, 2, 0.4);
}

.img-bx {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #ff7302;
  padding: 20px;
  border-radius: 22px;
}

/*--------------------------------------------------------------
  ## cta-2
--------------------------------------------------------------*/

/*--------------------------------------------------------------
  ## social-section
--------------------------------------------------------------*/
.social-section {
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .social-section {
    padding: 50px 0px;
  }
}
.social-section .sec-t {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.social-section .sec-t h2 {
  font-family: "DynaPuff", system-ui;
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  color: #F7F7F7;
  letter-spacing: 13px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .social-section .sec-t h2 {
    font-size: 24px;
    letter-spacing: 6px;
  }
}
.social-section .sec-t p {
  color: #d6d4c6;
  margin-top: 14px;
  letter-spacing: 2px;
}
@media only screen and (max-width: 767px) {
  .social-section .sec-t p {
    letter-spacing: 1px;
  }
}

.social-conx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: 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: rgba(255, 115, 2, 0.6);
  border-radius: 50px;
  padding: 10px 20px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .social-conx {
    margin-top: 20px;
  }
}
.social-conx a {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.social-conx a:not(:last-child) {
  margin-right: 30px;
}
.social-conx a img {
  height: 50px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.social-conx a p {
  color: #bfbfbf;
}
@media only screen and (max-width: 767px) {
  .social-conx a p {
    font-size: 14px;
  }
}
.social-conx a:hover img {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.social-conx a:hover p {
  color: #ff7302;
}

/*--------------------------------------------------------------
  ## buy-sec
--------------------------------------------------------------*/

/*--------------------------------------------------------------
  ## 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 .sec-t {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  .tokeno .sec-t {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .tokeno .sec-t {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .tokeno .sec-t {
    margin-bottom: 30px;
  }
}
.tokeno .sec-t h2 {
  font-family: "DynaPuff", system-ui;
  font-size: 60px;
  text-transform: uppercase;
  color: #F7F7F7;
  letter-spacing: 1.2px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, 2px -2px 0px #fff, -2px 2px 0px #fff;
  color: #000;
}
@media only screen and (max-width: 1199px) {
  .tokeno .sec-t h2 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .tokeno .sec-t h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .tokeno .sec-t h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .tokeno .sec-t h2 {
    font-size: 33px;
  }
}
.tokeno .sec-t p {
  color: #ffd25f;
  letter-spacing: 2px;
}
@media only screen and (max-width: 767px) {
  .tokeno .sec-t p {
    letter-spacing: 1px;
  }
}
.tokeno .token-single {
  background-color: #e86700;
  padding: 20px;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  -webkit-box-shadow: inset 0 0 25px #000;
          box-shadow: inset 0 0 25px #000;
  height: 100%;
}
.tokeno .token-single .token-inner {
  background-color: #000000;
  -webkit-box-shadow: inset 0 0 5px #000;
          box-shadow: inset 0 0 5px #000;
  padding: 30px 30px;
  border-radius: 17px;
  height: 100%;
}
.tokeno .token-single span {
  position: relative;
  display: inline-block;
  color: #ffd25f;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .tokeno .token-single span {
    font-size: 19px;
  }
}
.tokeno .token-single h5 {
  position: relative;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  .tokeno .token-single h5 {
    font-size: 22px;
  }
}
.tokeno .token-single p {
  color: #e5e4e4;
}

.contract-adress {
  margin-top: 40px;
  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: #121212;
  border: 1px dashed #ff7302;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .contract-adress {
    margin-top: 30px;
  }
}
.contract-adress .firt span {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  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: 21px;
  word-break: break-all;
  line-height: 1.4;
  color: #b9b6b6;
}
@media only screen and (max-width: 767px) {
  .contract-adress .firt p {
    font-size: 17px;
  }
}

.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: #ff7302;
  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;
  }
}

/*--------------------------------------------------------------
  ## page-hero
--------------------------------------------------------------*/

/*--------------------------------------------------------------
  ## media-page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# main-footer
--------------------------------------------------------------*/
.main-footer {
  background-color: #000000;
  padding: 50px 0px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .main-footer {
    padding: 30px 0px;
  }
}
@media only screen and (max-width: 482px) {
  .main-footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.main-footer .footer-logo-w h5 {
  color: #ff7302;
  font-family: "DynaPuff", system-ui;
  text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, 2px -2px 0px #fff, -2px 2px 0px #000;
  font-size: 42px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.main-footer .footer-logo-w p {
  font-size: 14px;
  color: #777;
}