/* ===================
fonts
====================== */

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


/* ===================
general css
====================== */

*, *:before, *:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html, body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  background: linear-gradient(to right, #2A81B8 0%, #3e27be 50%, #2AB892 100%);
  line-height: 1.8;
}

a {
  color: #14212B;
  display: inline-block;
}

a, a:active, a:focus, a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

a:hover {
  color: #0049D0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #1F2471;
  margin: 0px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
}

.img, img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

/* ===================
preloader
====================== */

.preloader {
  background: #0d0c3c;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.preloader-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.milk-cow-milking {
  position: relative;
  width: 150px;
  height: 180px;
}

.cow-icon {
  font-size: 48px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.milk-drop-anim {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: milkDropLoad 1s infinite;
}

.bucket {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border: 5px solid #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}

.milk-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #fff;
  animation: fillBucket 2s infinite;
}

@keyframes milkDropLoad {
  0% { opacity: 1; transform: translate(-50%,0); }
  100% { opacity: 0; transform: translate(-50%,60px); }
}

@keyframes fillBucket {
  0%, 30% { height: 0; }
  70%, 100% { height: 100%; }
}

/* Koşan inekleri AJAX işlemlerine göre göster/gizle */
.running-cows {
  display: none;
}

/* ===================
theme default css
====================== */

.ovrflow-hidden {
  overflow: hidden;
}

.text-right {
  text-align: right;
}

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

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}


/* ===================
bg css
====================== */

.bg {
  background: linear-gradient(to right, #000461 0%, #182072 50%, #000461 100%);
}

.bg-2 {
  background: #F8F9FF;
}


.blur-bg-1 {
  background-image: url(../img/shape/shape-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  border-radius: 8px;
  z-index: 1;
}

.blur-bg-1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(13, 29, 147, .64);
  z-index: -1;
}

.blur-bg-2 {
  background-image: url(../img/shape/shape-bg-2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  border-radius: 8px;
  z-index: 1;
}

.blur-bg-2::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(13, 29, 147, .64);
  z-index: -1;
}


/* ===================
shape css
====================== */

.shape-1{
  clip-path: polygon(15% 0, 100% 7%, 100% 93%, 0 100%, 0 15%);
}

.shape-2{
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
}

.shape-3{
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
}

.shape-4{
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%);
}

.shape-5{
  clip-path: polygon(15% 0, 100% 5%, 100% 100%, 85% 100%, 0 100%, 0 15%);
}

.shape-6{
  clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 95%, 0 0);
}

.shape-7{
  clip-path: polygon(15% 0, 100% 5%, 100% 85%, 85% 100%, 0 95%, 0 15%);
}


@media all and (max-width: 767px) {
  
  .shape-1{
    clip-path: polygon(15% 0, 100% 5%, 100% 95%, 0 100%, 0 3%);
  }

  .shape-5{
    clip-path: polygon(15% 0, 100% 5%, 100% 100%, 85% 100%, 0 100%, 0 3%);
  }

  .shape-6{
    clip-path: polygon(15% 0, 100% 0, 100% 97%, 85% 100%, 0 97%, 0 0);
  }

  .shape-7{
    clip-path: polygon(15% 0, 100% 3%, 100% 97%, 85% 100%, 0 97%, 0 3%);
  }

}



/* ===================
site title css
====================== */

.site-heading {
  margin-bottom: 50px;
}

.site-title-tagline {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 18px;
  color: transparent;
  position: relative;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  -moz-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
}

.site-title-tagline::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 3px;
  margin-right: 10px;
  margin-bottom: 5px;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 48px;
  color: #fff;
  margin-top: 5px;
  margin-bottom: 0;
}

.site-title span {
  color: transparent;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  -moz-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
}

.site-heading p {
  font-size: 16px;
}

.heading-divider {
  display: inline-block;
  position: relative;
  height: 4px;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  width: 90px;
  overflow: hidden;
}

.heading-divider:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: #ffffff;
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(85px);
  }

  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(85px);
  }

  100% {
    transform: translateX(-1px);
  }
}


@media all and (max-width: 767px) {
  .site-title {
    font-size: 35px;
  }
}



/* ===================
margin & padding
====================== */

.pb-140 {
  padding-bottom: 140px;
}

.pd-50 {
  padding: 50px 0;
}

.py-120 {
  padding: 120px 0;
}

.py-150 {
  padding: 150px 0;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}

.pos-rel {
  position: relative;
  z-index: 1;
}

/* ===================
theme button
====================== */

.theme-btn {
  font-size: 16px;
  color: #fff;
  padding: 10px 28px;
  font-weight: 500;
  border-radius: 50px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  border: none;
  background-size: 200% 100%;
  background-image: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.theme-btn:hover {
  color: #fff;
  background-position: 100% 0;
}

.theme-btn2 {
  background-image: linear-gradient(to right, #301EA2 0%, #442BCB 51%, #301EA2 100%);
}

.theme-btn i {
  margin-left: 6px;
}



/* ===================
container
====================== */

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1185px;
  }
}




/* ===================
scroll-top css
====================== */

#scroll-top {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    left: auto !important; /* Solda olmasını engellemek için */
    display: none; /* Başlangıçta gizli */
    z-index: 9999 !important; /* Yüksek z-index değeri */
  cursor: pointer;
    -webkit-transition: all .5s;
    transition: all .5s;
  width: 50px;
    height: 55px;
}

#scroll-top.cow-scroll-top {
  background: linear-gradient(to right, #3498DB 0%, #85C1E9 51%, #3498DB 100%);
  border: 4px solid #fff;
  transform-origin: center;
}

#scroll-top.cow-scroll-top:hover {
  animation: mooCow 0.8s ease-in-out;
  background: linear-gradient(to right, #2471A3 0%, #3498DB 51%, #2471A3 100%);
}

@keyframes mooCow {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Özel süt efekti - Yukarı doğru milk butonundan sonra */
#scroll-top.cow-scroll-top::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 25px;
  background: #fff;
  border-radius: 0 0 7px 7px;
  opacity: 0;
  transition: all 0.3s;
}

#scroll-top.cow-scroll-top:hover::after {
  opacity: 1;
  animation: milkDrip 1.5s infinite;
}

@keyframes milkDrip {
  0% { height: 0; opacity: 0; }
  20% { height: 5px; opacity: 0.8; }
  40% { height: 15px; opacity: 1; }
  80% { height: 25px; opacity: 0.3; }
  100% { height: 30px; opacity: 0; }
}

.milk-carton-scroll-top {
    background: #ffffff !important;
    color: #1565C0 !important;
    border: 2px solid #cccccc !important;
    border-radius: 8px !important;
    line-height: 50px !important;
    text-align: center !important;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
    position: relative !important;
    transition: all 0.4s ease !important;
    font-size: 26px !important; /* Emoji boyutu */
    position: fixed !important;
    overflow: hidden !important;
}

.milk-carton-scroll-top:hover {
    transform: scale(1.1) translateY(-5px) !important;
    background: #f0f8ff !important;
    box-shadow: 0 6px 15px rgba(21, 101, 192, 0.3) !important;
    animation: milkCartonShake 0.8s ease infinite !important;
}

.milk-carton-scroll-top:after {
    content: '';
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 0 !important;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(240, 248, 255, 0.6) 100%) !important;
    transition: all 0.4s ease !important;
    z-index: 1 !important;
}

.milk-carton-scroll-top:hover:after {
    height: 10px !important;
    animation: milkWave 1.5s ease-in-out infinite !important;
}

@keyframes milkCartonShake {
    0% { transform: scale(1.1) translateY(-5px) rotate(0deg); }
    25% { transform: scale(1.1) translateY(-5px) rotate(3deg); }
    50% { transform: scale(1.1) translateY(-5px) rotate(0deg); }
    75% { transform: scale(1.1) translateY(-5px) rotate(-3deg); }
    100% { transform: scale(1.1) translateY(-5px) rotate(0deg); }
}

@keyframes milkWave {
    0% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

@keyframes milkSplashDown {
    0% {
        background-position: 50% -100%, 40% -100%, 60% -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        background-position: 50% 200%, 40% 180%, 60% 190%;
        opacity: 0;
    }
}

.milk-carton-scroll-top .fas.fa-milk {
    position: relative;
    z-index: 2;
}

.milk-carton-scroll-top .fas.fa-milk:before {
    content: "🥛" !important;
    font-size: 22px !important;
    position: relative;
    z-index: 2;
}

.milk-carton-scroll-top .milk-drop {
    position: absolute !important;
    bottom: -20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-top: 0 solid #ffffff !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    z-index: 3 !important;
}

.milk-carton-scroll-top:hover .milk-drop {
    opacity: 1 !important;
    border-top: 20px solid rgba(255, 255, 255, 0.9) !important;
    animation: milkDrop 1.2s ease infinite !important;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1)) !important;
}

@keyframes milkDrop {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.7; transform: translateX(-50%) translateY(15px) scale(0.9); }
    100% { opacity: 0; transform: translateX(-50%) translateY(30px) scale(0.5); }
}

.milk-carton-scroll-top:hover .milk-drop {
    opacity: 1 !important;
    border-top: 20px solid rgba(255, 255, 255, 0.9) !important;
    animation: milkDrop 1.2s ease infinite !important;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1)) !important;
}

@keyframes milkCartonShake {
    0% { transform: scale(1.1) translateY(-5px) rotate(0deg); }
    25% { transform: scale(1.1) translateY(-5px) rotate(3deg); }
    50% { transform: scale(1.1) translateY(-5px) rotate(0deg); }
    75% { transform: scale(1.1) translateY(-5px) rotate(-3deg); }
    100% { transform: scale(1.1) translateY(-5px) rotate(0deg); }
}

@keyframes milkDrop {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.7; transform: translateX(-50%) translateY(15px) scale(0.9); }
    100% { opacity: 0; transform: translateX(-50%) translateY(30px) scale(0.5); }
}

@keyframes milkWave {
    0% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}




/* ===================
nav menu css
====================== */

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 28px;
    padding: 28px 0 28px 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    padding: 15px;
    left: -18px;
    border: none;
    border-radius: 8px;
    width: 220px;
    background: linear-gradient(to right, #0063E2 0%, #00ADFF 75%, #0063E2 100%);
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  }

  .navbar .nav-item .dropdown-menu::before {
    content: "\f0de";
    position: absolute;
    color: #0070E7;
    font-family: "Font Awesome 6 Pro";
    font-weight: bold;
    font-size: 45px;
    top: -34px;
  }

  .navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px;
    color: #fff;
    border-radius: 8px;
    position: relative;
    text-transform: uppercase;
    transition: all .5s ease-in-out;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 0px;
    height: 2px;
    opacity: 0;
    background: #fff;
    transition: all .7s ease-in-out;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    width: 28px;
    opacity: 1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: linear-gradient(to right, #0063E2 0%, #00ADFF 80%, #0063E2 100%);
    color: #fff;
    padding-left: 33px;
  }

  .navbar .nav-item .nav-link {
    position: relative;
    z-index: 1;
  }

  .navbar .nav-item .nav-link::before {
    content: "";
    position: absolute;
    background: linear-gradient(to right, #0063E2 0%, #00ADFF 50%, #0063E2 100%);
    width: 0px;
    height: 3px;
    bottom: 20px;
    left: 1px;
    border-radius: 50px;
    transition: all .5s ease-in-out;
  }

  .navbar .nav-item .nav-link.active::before,
  .navbar .nav-item .nav-link:hover::before {
    width: 20px;
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: #fff;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .header-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 30px;
  }

  .header-nav-search a {
    color: #fff;
    font-size: 18px;
    padding: 5px;
  }

  .navbar .header-btn {
    padding-top: 8px;
  }


}

/*bootstrap menu*/

.navbar {
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
}

.navbar.fixed-top {
  background: linear-gradient(to right, #2A81B8 0%, #3e27be 50%, #2AB892 100%);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
  animation: slide-down 0.7s;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

button.navbar-toggler {
  font-size: 3.5rem;
  padding: 0;
  margin: 0;
}

button.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand img {
  width: 220px;
}

/* dropdown toggler */

.dropdown-toggle::after {
  content: "\f078";
  display: inline-block;
  margin-left: 5px;
  vertical-align: 1.5px;
  font-family: 'Font Awesome 6 Pro';
  font-weight: 600;
  border: none;
  font-size: 13px;
}


/* mobile menu */

.mobile-menu-right {
  display: flex;
  align-items: center;
}

@media all and (max-width: 1199px) {
  .navbar .header-btn {
    display: none;
  }

  .navbar .header-btn {
    display: none;
  }

  .navbar-brand img {
    width: 190px;
  }

  .header-phone {
    display: none;
  }
}

@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
  }

  .navbar-brand {
    padding-left: 10px;
  }

  .navbar-brand img {
    width: 190px;
  }

  .navbar-collapse {
    max-height: 290px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    background-color: #fff;
  }

  .dropdown-toggle::after {
    float: right;
    margin-top: 5px;
  }

  .navbar .nav-item .nav-link {
    color: #1F2471;
    font-weight: 700;
    transition: all .5s ease-in-out;
  }

  .navbar .nav-item .nav-link:hover {
    color: #00ACFF !important;
  }

  .navbar-toggler{
    border: none;
  }

  .navbar-toggler-icon {
    font-size: 32px;
    color: #fff;
    font-weight: 500;
    padding-right: 10px;
    margin-bottom: 10px;
    background: transparent;
  }

  .navbar .dropdown-menu {
    border-radius: 8px;
  }

  .header-nav-right {
    display: none;
  }
}



/* ===================
main css 
====================== */
.main {
  margin-top: -6rem;
}


/* ===================
hero css 
====================== */

.hero-wrapper {
  padding-top: 95px;
  padding-bottom: 227px;
  position: relative;
  background: linear-gradient(to right, #000461 0%, #182072 50%, #15AC90 100%);
  z-index: 1;
}

.hero-shap-1 {
  position: absolute;
  background: rgba(255, 255, 255, .04);
  width: 40%;
  height: 50%;
  border-radius: 150px;
  top: -200px;
  left: -50px;
  transform: rotate(20deg);
  z-index: -1;
}

.hero-shape img {
  position: absolute;
}

.hero-shape-2 {
  left: 0;
  bottom: -2px;
}

.hero-shape-3 {
  left: 0;
  right: 0;
  top: -2px;
  z-index: -1;
}

.hero-img {
  position: relative;
  z-index: 1;
}

.hero-wrapper .hero-sub-title {
  text-transform: uppercase;
  color: #fff;
  font-size: 25px;
}

.hero-wrapper .hero-title {
  font-size: 50px;
  color: #fff;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-wrapper .hero-title span {
  color: transparent;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  -moz-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-wrapper p {
  font-size: 17px;
  color: #fff;
}

.hero-wrapper .hero-btn {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}

.hero-single {
  padding-top: 250px;
  padding-bottom: 180px;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-single::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 10, 22, 0.75);
  left: 0;
  top: 0;
  z-index: -1;
}

.hero-single .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-single .hero-content .hero-title {
  color: #fff;
  font-size: 49px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-single .hero-content .hero-title span {
  color: #896EFF;
}

.hero-single .hero-content .hero-sub-title {
  color: #896EFF;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}

.hero-single .hero-content p {
  color: #fff;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
  gap: 2rem;
  display: flex;
  margin-top: 1rem;
  justify-content: start;
}

.hero-title {
  font-weight: 700;
  margin: 20px 0;
}

.hero-sub-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.hero-btn .video-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
}

.hero-btn .play-btn {
  width: 60px;
  height: 60px;
  line-height: 60px;
}

.hero-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.hero-slider.owl-theme .owl-nav [class*=owl-] {
  color: #00A9FD;
  font-size: 30px;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, .04);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  transition: all .5s ease-in-out;
}

.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background: #fff;
  color: #00A9FD;
}

.hero-slider.owl-theme .owl-nav .owl-prev {
  left: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-next {
  right: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-prev, .hero-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

@media all and (max-width: 1199px) {
  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }

  .hero-slider.owl-theme .owl-nav{
    display: none;
  }
}

@media all and (max-width: 991px) {
  .hero-single .hero-content .hero-title {
    font-size: 35px;
  }

  .hero-wrapper {
    padding-top: 260px;
    padding-bottom: 160px;
  }

  .hero-wrapper .hero-title {
    font-size: 32px;
  }

  .hero-wrapper .hero-img {
    margin-top: 70px;
  }

}

@media all and (max-width: 767px) {
  .hero-wrapper .hero-sub-title {
    font-size: 20px;
  }

  .hero-single .hero-content .hero-sub-title {
    font-size: 15px;
  }

  .hero-single .hero-content .hero-btn {
    gap: 1rem;
  }
}

/* =====================
play btn
===================== */

.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: #fff;
  color: #0094F5;
  position: absolute;
  border-radius: 50%;
}

.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #fff;
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5 ease-in-out;
}

@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}



/* ===================
sale countdown css 
====================== */

.sale-countdown {
  position: relative;
  margin-top: -165px;
  z-index: 1;
}

.sale-countdown-content {
  text-align: center;
}

.sale-countdown-title {
  color: #fff;
  font-size: 25px;
  letter-spacing: 1.5px;
  font-weight: bold;
  text-transform: uppercase;
}

.sale-countdown-title span {
  color: transparent;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  -moz-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
}

.sale-countdown .countdown-single {
  background: linear-gradient(to right, #160e6f 0%, #3e27be 50%, #160e6f 100%);
}

@media all and (max-width: 1199px) {

  .sale-countdown{
    margin-top: -50px;
  }

}


@media all and (max-width: 767px) {

  .sale-countdown{
    margin-top: 10px;
  }

}


/* ===================
about css 
====================== */

.about-area {
  position: relative;
  display: block;
}

.about-left {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-right {
  position: relative;
  display: block;
  padding-left: 25px;
}

.about-list-wrapper {
  position: relative;
  display: block;
  margin-top: 20px;
  margin-bottom: 30px;
}

.about-list {
  position: relative;
  display: block;
}

.about-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-list li+li {
  margin-top: 10px;
}

.about-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.about-list li .icon span {
  font-size: 20px;
  color: transparent;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  -moz-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
}

.about-list li .text {
  margin-left: 16px;
}

.about-list li .text p {
  color: #fff;
  margin: 0;
}

@media all and (max-width: 991px) {
  .about-right {
    margin-top: 80px;
  }
}



/* ===================
feature css 
====================== */

.feature-area {
  position: relative;
  z-index: 1;
}

.feature-item {
  padding: 18px;
  margin-bottom: 25px;
  transition: all .5s ease-in-out;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  margin-bottom: 20px;
  transition: all .5s ease-in-out;
}

.feature-item:hover .feature-icon {
  transform: rotateX(360deg);
}

.feature-icon i {
  font-size: 55px;
  color: #E9895E;
  line-height: 1;
}

.feature-content h5 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
}

.feature-item p {
  color: #fff;
}


/* ===================
token sale css 
====================== */

.token-info {
  padding: 18px;
  margin-bottom: 25px;
  transition: all .5s ease-in-out;
}

.token-info h4 {
  font-size: 25px;
  color: #fff;
  text-align: center;
}

.token-info-table {
  padding: 20px;
  padding-bottom: 0;
}

.token-info-table th,
.token-info-table td {
  color: #fff;
  padding: 12px 10px;
  vertical-align: middle;
  white-space: nowrap;
}

.token-info-table th {
  font-weight: 500;
}

.token-info-table .table {
  margin-bottom: 0;
}

.token-info-table table>:not(caption)>*>*{
  background-color: transparent;
}

.token-info-table .table tr {
  border-bottom-color: rgba(255, 255, 255, .15)
}

.token-info-table .table tr:last-child {
  border-bottom-color: transparent;
}

.token-sale-progress {
  padding: 0px 25px 0px 25px;
}

.token-sale-progress h4 {
  font-size: 25px;
  color: #fff;
  text-align: center;
}

.token-sale-progress .countdown-single {
  text-align: center;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 50%, #0063E2 100%);
}

.token-progress-bar-content h5 {
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
}

.token-progress-bar-content .progress {
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
}

.token-progress-bar-content .progress-bar {
  border-radius: 8px;
  font-size: 25px;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 50%, #0063E2 100%);
}

.token-sale-target {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.token-sale-target span {
  color: #fff;
}

.token-sale-target h6 {
  color: #fff;
  font-size: 25px;
}

.token-sale-btn {
  text-align: center;
  margin-top: 25px;
}

.token-min-buy {
  text-align: center;
  color: #fff;
  margin-top: 8px;
  font-size: 14px;
}

.token-sale-discount {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  position: relative;
}

.token-sale-discount::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 100%;
  top: 10px;
  background: rgba(255, 255, 255, .1);
}

.token-sale-discount h5 {
  color: #fff;
}

.token-sale-discount h3 {
  color: #fff;
}


@media all and (max-width: 767px) {
  .token-sale-discount h5 {
    font-size: 16px;
  }

  .token-sale-discount span {
    font-size: 14px;
  }

  .token-sale-discount {
    gap: 25px;
  }
}


/* ===================
token details css 
====================== */

.token-details-chart-item {
  text-align: center;
}

.token-details-chart {
  padding: 18px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all .5s ease-in-out;
}

.token-chart-circle {
  width: 300px;
  position: relative;
}



.token-chart-icon {
  background: url(../img/icon/chart-icon.png) no-repeat center center;
  background-size: 60px auto;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: 0 auto;
  transform: translateY(-50%);
  transition: all .3s ease-out;
}

.chart-label li {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chart-label-percentage {
  font-weight: bold;
}

.chart-label-color {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  margin-right: 6px;
}

.chart-label-color-1 {
  background: #9d9d9d;
}

.chart-label-color-2 {
  background: #20d87c;
}

.chart-label-color-3 {
  background: #b28916;
}

.chart-label-color-4 {
  background: #8167ff;
}

.chart-label-color-5 {
  background: #0095cb;
}

.chart-label-color-6 {
  background: #fff714;
}

.chart-label-color-7 {
  background: #ff5015;
}

.chart-label-color-8 {
  background: #ff4e3e;
}


.token-details-chart-item h4 {
  color: #fff;
}


@media all and (max-width: 1199px) {
  .token-details-chart-item {
    margin-bottom: 30px;
  }

  .token-details-chart {
    flex-direction: column;
  }
}




/* ===================
service css 
====================== */

.service-item {
  padding: 30px;
  margin-bottom: 25px;
  text-align: center;
  transition: all .5s ease-in-out;
}

.service-item:hover {
  transform: translateY(-10PX);
}

.service-img {
  width: 100px;
  height: 100px;
  border: 4px solid #01E8FE;
  border-top-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 25px;
  position: relative;
}

.service-img::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #01E8FE;
  border-radius: 50px;
  left: 5px;
  top: 5px;
  transition: all .5s ease-in-out;
}

.service-img::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #01E8FE;
  border-radius: 50px;
  right: 5px;
  top: 5px;
  transition: all .5s ease-in-out;
}

.service-item:hover .service-img img {
  transform: rotateX(360deg);
}

.service-content h4 {
  color: #fff;
  margin-bottom: 15px;
}


/* ===================
road map css 
====================== */

.road-map-timeline {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}

.road-map-timeline-list {
  position: relative;
  margin: 10px 0;
}

.road-map-timeline-list li {
  position: relative;
}

.road-map-timeline-list::before,
.road-map-timeline-list li::before {
  content: "";
  display: block;
  width: 5px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin-left: -1px;
}

.road-map-timeline-list::before {
  background: linear-gradient(to top, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  width: 4px;
  height: 83%;
  left: 50%;
  top: 60px;
}

.road-map-timeline-list li::before {
  content: '\f00c';
  width: 36px;
  height: 36px;
  line-height: 36px;
  top: 6.5%;
  right: -19px !important;
  z-index: 2;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  border-radius: 100%;
  transition: 0.3s;
  color: #fff;
  text-align: center;
  font-family: 'Font Awesome 6 Pro';
  font-style: normal;
  font-weight: 500;
}

.road-map-timeline-list::after {
    display: none !important;
  content: '\f322';
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 80px;
  margin: 0 auto;
  z-index: 8;
  border-radius: 100%;
  font-family: 'Font Awesome 6 Pro';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  box-shadow: 0px 0px 28px 5px rgba(0, 0, 0, 0.10);
}

.road-map-timeline ul li:nth-child(even)::before {
  left: -16px;
  top: 6.5%;
}

.road-map-timeline-list li:nth-child(even) .road-map-item-single {
  padding-left: 116px;
}

.road-map-timeline-list li:nth-child(odd) .road-map-item-single {
  -webkit-order: 1;
  -moz-order: 1;
  -ms-order: 1;
  -o-order: 1;
  order: 1;
  padding-right: 114px;
}

.road-map-timeline-list li:nth-child(2)::before {
  left: -1px;
}

.road-map-timeline-list li .road-map-item-content {
  margin-bottom: 25px;
  text-align: center;
  transition: all .5s ease-in-out;
}

.road-map-timeline-list li:nth-child(odd) .road-map-item-content::before,
.road-map-timeline-list li:nth-child(even) .road-map-item-content::before {
  content: '';
  width: 120px;
  border-top: 4px solid #00A1FB;
  position: absolute;
  top: 33px;
  left: -120px;
  z-index: -1;
}

.road-map-timeline-list li:nth-child(odd) .road-map-item-content::before {
  top: 33px;
  left: inherit;
  right: -120px !important;
}

.road-map-item-content h3 {
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  margin: 0;
  padding: 8px 0 12px 0;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: normal;
  font-weight: 500;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 8px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.road-map-item-content h5 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: normal;
  padding-bottom: 20px;
  font-weight: 500;
}

.road-map-item-content p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 29px;
  font-weight: 400;
}

.road-map-item-info {
  max-width: 290px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}

.road-map-timeline-list li.road-map-timeline-point::before {
  content: '\f111';
}

.road-map-timeline-list li.road-map-timeline-point2::before {
  content: '\f111';
}

.road-map-timeline-list li.road-map-timeline-point2::before {
  background: #d1d1d1;
}

.timeline-container {
  max-width: 970px;
  margin: 0 auto 100px;
}

.road-map-timeline ul {
  padding: 0;
  margin: 25px 0 0 0;
  padding: 0 25px;
  overflow: hidden;
}

.road-map-timeline ul li {
  list-style-type: none;
  margin: 30px 0 33px 0;
  width: 50%;
  float: left;
  clear: left;
}

.road-map-timeline ul li:nth-child(even) {
  float: right;
  clear: right;
}

.road-map-timeline ul li:nth-child(2) {
  padding-top: 16%;
}

.road-map-timeline ul li:nth-child(2):before {
  top: 42.5%;
}


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

  .road-map-timeline-list li .road-map-item-content{
    padding: 10px;
    padding-top: 0;
  }

  .road-map-timeline ul li:nth-child(2) {
    padding-top: 29%;
  }

  .road-map-timeline-list li:nth-child(even) .road-map-item-content::before{
    top: 35px;
  }

  .road-map-item-content h3 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .road-map-item-content h5 {
    font-size: 20px;
    padding-bottom: 10px;
  }

  .road-map-timeline-list::after{
    bottom: 120px;
  }

}

@media all and (max-width: 767px) {

  .road-map-timeline {
    max-width: 370px;
    padding: 0 15px;
  }

  .road-map-timeline ul {
    padding: 0;
    overflow: inherit;
  }

  .road-map-timeline ul li:nth-child(2) {
    padding-top: 0;
  }

  .road-map-timeline-list::after {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0;
    left: -3px;
  }

  .road-map-timeline ul li {
    width: 100%;
    float: none;
    clear: both;
    margin: 0;
    padding-bottom: 50px;
  }

  .road-map-timeline ul li:nth-child(2n) {
    float: none;
    clear: none;
  }

  .road-map-timeline-list li:nth-child(2n+1) .road-map-item-single {
    padding: 0 0 0 51px;
  }

  .road-map-timeline-list li::before {
    right: inherit !important;
    left: 0;
  }

  .road-map-timeline-list li:nth-child(2n+1) .road-map-item-single .road-map-item-content::before {
    right: inherit !important;
    left: -20px;
    top: 38px;
    width: 22px;
  }

  .road-map-item-info {
    padding: 20px 10px 30px 10px;
  }

  .road-map-timeline-list::before {
    height: 92%;
    left: 17px;
    top: 50px;
  }

  .road-map-timeline-list li:nth-child(2n) .road-map-item-single .road-map-item-content::before {
    left: -40px;
    width: 40px;
  }

  .road-map-timeline ul li:nth-child(2n)::before {
    left: 0;
    top: 18px;
  }

  .road-map-timeline-list li:nth-child(even) .road-map-item-single {
    padding-left: 51px;
  }

}



/* =========================
road map timeline 2 css 
============================ */

.timeline-area {
	margin: 0 -3px;
}

.timeline__item {
    padding: 0 10px 50px 10px;
}

.timeline__item:nth-child(even) {
	padding-top: 40px;
	padding-bottom: 0;
}

.timeline__content {
  border: 0;
  border-radius: 8px;
  color: #777;
  display: block;
  padding: 0;
  text-align: center;
  position: relative;
  background: linear-gradient(to right, #000461 0%, #182072 50%, #000461 100%);
}

.timeline__content h3 {
	background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
	font-size: 18px;
	color: #fff;
	padding: 10px;
	margin-left: 20px;
	margin-right: 20px;
	border-radius: 8px;
}

.timeline__content h5 {
	color: #fff;
	font-size: 21px;
	padding: 10px 0;
}

.timeline__content-info {
	padding: 20px;
}

.timeline__content p {
  font-size: 18px !important;
  line-height: 28px !important;
  color: #fff !important;
  margin: 0 !important;
}

.timeline__item { 
  position: relative; 
}

.timeline__item:nth-child(2)::before {
	width: 50%;
	top: -2px;
	bottom: inherit;
	right: inherit;
	height: 5.5px;
} 

.timeline__item .timeline__content::before { 
  display: none;
}

.timeline--horizontal .timeline__item .timeline__content::after {
	content: '';
  background: #009EFA;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  border: 0;
  z-index: -1;
  width: 3px;
  height: 50px;
  margin: 0 auto;
}

.timeline--horizontal .timeline__item:nth-child(even) .timeline__content::after {
	bottom: inherit;
	top: -50px;
}

.timeline__item::after {
  content: '\f111';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  margin: 0 auto;
  width: 29px;
  height: 29px;
  transform: translateY(-50%);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  border: none;
  font-family: 'Font Awesome 6 Pro';
  font-style: normal;
  text-decoration: inherit;
  font-size: 15px;
  color: #fff;
  line-height: 29px;
  text-align: center;
}

.timeline__item:nth-child(odd)::after {
	top: inherit;
	bottom: -30px;
}

.timeline__item:first-child::after {
  content: '\f00c';
  color: #fff;
}

.timeline__item:nth-child(2)::after {
  color: #fff;
}

.timeline--horizontal .timeline-divider {
	margin: 0 0;
  background: #009EFA;
}

.timeline-divider::before {
  content: '';
  position: absolute;
	background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  width: 30px;
  height: 30px;
  left: -17px;
  top: -13px;
  z-index: 10;
  border-radius: 50%;
}

.timeline-divider::after {
  content: '';
  position: absolute;
	background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  width: 30px;
  height: 30px;
  right: -19px;
  top: -13px;
  z-index: 10;
  border-radius: 50%;
}

.timeline-nav-button {
  background: none;
  width: 12px;
  height: 18px;
  border: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

button.timeline-nav-button:focus { 
  outline: none; 
}

.timeline-nav-button--prev::before {
  top: -1px;
  left: 37px;
  width: 30px;
  height: 30px;
}

.timeline-nav-button--next::before {
  top: -1px;
  left: -23px;
  width: 30px;
  height: 30px;
}

.timeline-nav-button:disabled {
  opacity: 1;
}


@media screen and (max-width: 767px) {

	.timeline__wrap {
    padding-left: 8px;
	}
  
	.timeline__item {
		padding: 20px 0 20px 0;
	}

	.timeline__item:nth-child(2n) {
	  padding-top: 20px;
	  padding-bottom: 20px;
	}
  
	.timeline__item::after {
	  top: 50%;
	}

	.timeline__item:nth-child(2n+1)::after {
		top: 50%;
	  bottom: inherit;
	}

	.timeline:not(.timeline--horizontal)::before {
    background: #009EFA;
	  width: 3px;
	}

	.timeline--mobile::before {
	  left: 15px !important;
	}

	.timeline--mobile .timeline__item::after {
	  left: -6px;
	}

	.timeline__item:nth-child(2)::before,
	.timeline__item:nth-child(1)::before {
	  display: none;
	}

	.timeline--mobile .timeline__item .timeline__content::after {
    left: 0;
    border-bottom: none;
    border-right: none;
    border-left: none;
    border-top: none;
    content: '';
    background: #009EFA;
    position: absolute;
    bottom: 31%;
    left: -40px;
    border: 0;
    z-index: -1;
    width: 40px;
    height: 3px;
	}

	.timeline-divider { 
    display: none; 
  }

	.timeline-divider::before {
	  left: 8px;
	}

	.timeline-divider::after {
    top: inherit;
    right: inherit;
    left: -2px;
    bottom: -7px;
	}

}




/* ===================
profit css 
====================== */

.profit-area .theme-btn {
  margin-top: 30px;
}

@media all and (max-width: 991px) {

  .profit-area .profit-img{
    margin-bottom: 50px;
  }

}


/* ===================
what-crypto css 
====================== */

.what-crypto-item {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background: linear-gradient(to right, #160e6f 0%, #3e27be 50%, #160e6f 100%);
  transition: all .5s ease-in-out;
}

.what-crypto-item i {
  color: #fff;
  font-size: 45px;
  margin-bottom: 15px;
}

.what-crypto-item h5 {
  color: #fff;
}

.what-crypto-item:hover {
  transform: rotate(360deg);
}

@media all and (max-width: 991px) {

  .what-crypto-item{
    margin-bottom: 25px;
    padding: 15px;
  }

}


/* ===================
currency price css 
====================== */

.currency-price-table {
  padding: 20px;
}

.currency-price-table .table {
  margin-bottom: 0px;
}

.currency-price-table table>:not(caption)>*>*{
  background-color: transparent;
}

.currency-price-table .table>:not(:last-child)>:last-child>* {
  border-bottom-color: rgba(255, 255, 255, .1);
}

.currency-price-table .table tr {
  border-bottom-color: rgba(255, 255, 255, .1);
}

.currency-price-table .table tr:last-child {
  border-bottom-color: transparent;
}

.currency-price-table th,
.currency-price-table td {
  color: #fff;
  padding: 10px 10px;
  white-space: nowrap;
}



/* ===================
video css 
====================== */

.video-area {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.video-wrapper {
  position: relative;
}

.video-wrapper img {
  border-radius: 12px;
  height: auto;
  width: 100%;
}

.video-area .play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  background: #fff;
  color: #4129C5;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* ===================
choose css 
====================== */
.choose-area {
  position: relative;
}

.choose-content {
  position: relative;
  padding-left: 30px;
}

.choose-content-wrapper {
  margin: 25px 0;
}

.choose-item {
  padding: 18px;
  margin-bottom: 25px;
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}

.choose-item-img img {
  width: 65px;
}

.choose-item h5 {
  color: #fff;
  margin-bottom: 10px;
}

@media all and (max-width: 991px) {
  .choose-img {
    margin-top: 50px;
  }
}

@media all and (max-width: 767px) {
  .choose-content {
    padding-left: 0px;
  }
}



/* ===================
counter css 
====================== */

.counter-area {
  position: relative;
  background: linear-gradient(to right, #160e6f 0%, #3e27be 50%, #160e6f 100%);
  z-index: 1;
}

.counter-box {
  text-align: center;
  padding: 50px 35px;
  position: relative;
  z-index: 1;
}

.counter-box .icon {
  font-size: 70px;
  color: #00ADFF;
  margin-bottom: 20px;
  line-height: 1;
}

.counter-box .counter {
  display: inline-block;
  line-height: 1;
  color: #fff;
  font-size: 50px;
  font-weight: 600;
}

.counter-box .counter-sign {
  font-size: 25px;
  font-weight: bold;
  margin-left: 8px;
}

.counter-box .title {
  color: #fff;
  margin-top: 15px;
  font-size: 18px;
}

@media all and (max-width: 991px) {
  .counter-area .counter-box {
    margin-bottom: 25px;
  }
}

@media all and (max-width: 767px) {
  .counter-area {
    margin-top: 0px;
  }
}



/* ===================
blog css 
====================== */

.blog-item {
  margin-bottom: 25px;
  background: #182072;
  border-radius: 8px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
}

.blog-item:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.blog-item-img {
  padding: 15px 15px 0px 15px;
}

.blog-item img {
     border-radius: 8px;
}

.blog-item-info {
  padding: 23px 30px 20px 30px;
}

.blog-item-meta ul {
  margin: 0;
  padding: 0;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  padding-bottom: 18px;
}

.blog-item-meta ul li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  color: #fff;
}

.blog-item-meta ul li i {
  margin-right: 5px;
  color: #00ACFF;
}

.blog-title {
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.blog-item-info p {
  margin-bottom: 25px;
}

.blog-item-info a {
  color: #fff;
  line-height: 1.4;
}

.blog-item-info a:hover {
  color: #00ACFF;
}

.blog-item-info .theme-btn:hover {
  color: #fff;
}

/* ===========================
blog single css
=========================== */

.blog-thumb-img {
  margin-bottom: 20px;
}

.blog-single-content img {
  border-radius: 8px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog-meta .blog-meta-left ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-meta i {
  margin-right: 5px;
  color: #00ADFF;
}

.blog-meta a {
  color: #fff;
}

.blog-meta a:hover {
  color: #00ADFF;
}

.blog-details-title {
  font-size: 34px;
  color: #fff;
}

.blockqoute {
  border-left: 5px solid #00ADFF;
  background: linear-gradient(to right, #000461 0%, #182072 50%, #000461 100%);
  padding: 30px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
}

.blockqoute-author {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
  color: #00ADFF;
}

.blockqoute-author::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: #00ADFF;
  left: 0;
  top: 10px;
}

.blog-details-tags {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details-tags h5 {
  color: #fff;
}

.blog-details-tags ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details-tags ul a {
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  color: #fff;
  padding: 4px 15px;
  border-radius: 50px;
  transition: all .5s ease-in-out;
}

.blog-details-tags ul a:hover {
  background: #00ADFF;
  color: #fff;
}

.blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: #fff;
  box-shadow: 0 0 40px 5px rgb(0, 0, 0 / 5%);
  margin: 50px 0;
  padding: 20px;
}

.blog-author-img {
  border: 2px solid #896EFF;
  padding: 5px;
  width: 250px;
}

.author-name {
  font-size: 22px;
  color: #1F2471;
  margin: 8px 0;
}

.author-info {
  padding: 0 20px;
}

.author-social {
  margin-top: 10px;
}

.author-social a {
  margin-right: 10px;
  color: #1F2471;
  transition: all .5s ease-in-out;
}

.author-social a:hover {
  color: #896EFF;
}

.blog-comments {
  margin-bottom: 50px;
}

.blog-comments h4 {
  color: #fff;
  font-size: 28px;
}

.blog-comments-wrapper {
  margin: 30px 0;
}

.blog-comments-single {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  border-radius: 8px;
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(to right, #000461 0%, #182072 50%, #000461 100%);
}

.blog-comments-single img {
  border-radius: 50%;
}

.blog-comments-content {
  padding-left: 30px;
}

.blog-comments-content h5 {
  color: #fff;
  font-size: 22px;
}

.blog-comments-content span {
  font-size: 14px;
}

.blog-comments-content p {
  margin-top: 10px;
}

.blog-comments-content a {
  font-weight: 600;
  margin-top: 5px;
  color: #00ADFF;
}

.blog-comments-content a:hover {
  color: #fff;
}

.blog-comments-reply {
  margin-left: 50px;
}

.blog-comments-form {
  padding: 30px;
  background: linear-gradient(to right, #000461 0%, #182072 50%, #000461 100%);
  border-radius: 8px;
  margin-top: 70px;
}

.blog-comments-form h4 {
  margin-bottom: 20px;
}

.blog-comments-form .form-group {
  margin-bottom: 20px;
}

.blog-comments-form .form-control {
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: none;
  background-color: #020552;
  color: #fff;
  border-color: transparent;
  transition: all .5s ease-in-out;
}

.blog-comments-form .form-control::placeholder {
  color: rgba(255, 255, 255, .5);
}

.blog-comments-form .form-control:focus {
  border-color: #00ADFF;
}

@media all and (max-width: 767px) {
  .blog-meta {
    flex-direction: column;
    font-size: 15px;
  }

  .blog-meta .blog-meta-left ul {
    gap: 10px;
  }

  .blog-details-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 25px 0 0 0;
  }

  .blog-comments-single {
    flex-direction: column;
    text-align: center;
    padding: 30px 0px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    margin-bottom: 30px;
    border-radius: 10px;
  }

  .blog-comments-reply {
    margin-left: 0px;
  }
}

/* =========================
sidebar css
========================= */

.widget {
  background: linear-gradient(to right, #000461 0%, #182072 50%, #000461 100%);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.widget .widget-title {
  color: #fff;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}

.widget .widget-title::before {
  position: absolute;
  content: '';
  width: 12px;
  border-bottom: 3px solid #00ADFF;
  bottom: 0;
  left: 0;
}

.widget .widget-title::after {
  position: absolute;
  content: '';
  width: 25px;
  border-bottom: 3px solid #00ADFF;
  bottom: 0;
  left: 18px;
}

.widget .search-form .form-control {
  padding: 10px 15px 10px 15px;
  border-radius: 8px;
  box-shadow: none;
  background-color: #020552;
  color: #fff;
  border-color: transparent;
  transition: all .5s ease-in-out;
}

.widget .search-form {
  position: relative;
}

.widget .search-form .form-control::placeholder {
  color: rgba(255, 255, 255, .5);
}

.widget .search-form .form-control:focus {
  border-color: #00ADFF;
}

.widget .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 8px 18px 6px 18px;
  background: transparent;
  border: none;
  color: #fff;
}

.widget .category-list a {
  display: block;
  padding: 10px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  transition: all .5s ease-in-out;
}

.widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.widget .category-list a:hover {
  padding-left: 10px;
  color: #00ADFF;
}

.widget .category-list a i {
  margin-right: 5px;
  color: #00ADFF;
}

.widget .category-list a span {
  float: right;
}

.widget .recent-post-single {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
}

.widget .recent-post-img {
  margin-right: 20px;
}

.widget .recent-post-img img {
  width: 100px;
  border-radius: 8px;
}

.widget .recent-post-bio h6 {
  font-size: 16px;
}

.widget .recent-post-bio span {
  font-size: 14px;
  color: #00ADFF;
}

.widget .recent-post-bio span i {
  margin-right: 5px;
}

.widget .recent-post-bio h6 a {
  color: #fff;
}

.widget .recent-post-bio h6 a:hover {
  color: #00ADFF;
}

.widget .social-share-link a {
  width: 35px;
  height: 35px;
  line-height: 31px;
  border-radius: 50px;
  border: 2px solid #00ADFF;
  color: #fff;
  text-align: center;
  margin-right: 5px;
  transition: all .5s ease-in-out;
}

.widget .social-share-link a:hover {
  background: #00ADFF;
  color: #fff;
}

.widget .tag-list a {
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  color: #fff;
  padding: 4px 18px;
  margin-bottom: 10px;
  border-radius: 50px;
  margin-right: 10px;
  display: inline-block;
  transition: all .5s ease-in-out;
}

.widget .tag-list a:hover {
  background: #00ADFF;
  color: #fff;
}

/* ===================
contact us css 
====================== */

.contact-wrapper {
  position: relative;
}

.contact-form {
  padding: 0 40px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.contact-form-header {
  margin-bottom: 30px;
  color: #1F2471;
}

.contact-form-header h2 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 10px;
}

.contact-form-header p {
  color: #fff;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 14px 20px;
  border-radius: 8px;
  box-shadow: none;
  background-color: #182072;
  color: #fff;
  border-color: transparent;
  transition: all .5s ease-in-out;
}

.contact-form .form-group .form-control:focus {
  border-color: #00ADFF;
}

.contact-form .form-group .form-control::placeholder {
  color: rgba(255, 255, 255, .5);
}

.contact-map {
  margin-top: 120px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
}

.contact-content {
  position: relative;
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  border: 2px solid #00ADFF;
}

.contact-info::before{
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  left: -15px;
  top: 38px;
  transform: rotate(45deg);
  border-radius: 7px;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
}

.contact-info-icon {
  width: 62px;
  height: 62px;
  border-radius: 50px;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  border-radius: 33% 66% 70% 30%/49% 62% 38% 51%;
}

.contact-info h5 {
  color: #fff;
  margin-bottom: 5px;
}

.contact-info p {
  color: #fff;
}

@media all and (max-width: 991px) {
  .contact-wrapper {
    padding: 20px;
  }

  .contact-form {
    padding: 0px;
  }

  .contact-info {
    gap: 15px;
    margin-bottom: 30px;
  }
}





/* ===================
team css 
====================== */

.team-area {
  position: relative;
  overflow: hidden;
}

.team-item {
  border-radius: 15px;
  margin-bottom: 60px;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  position: relative;
  transition: all .5s ease-in-out;
}

.team-item img {
  border-radius: 8px;
}

.team-item:hover {
  transform: translateY(-10px);
}

.team-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -40px;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  text-align: center;
  padding: 5px 10px 5px 20px;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.team-content::before{
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  left: -20px;
  top: 30px;
  background: #fff;
  border-radius: 7px;
  transform: rotate(45deg);
}

.team-bio {
  padding-top: 15px;
  padding-bottom: 10px;
}

.team-bio h5 {
  font-size: 22px;
  margin-bottom: 5px;
}

.team-bio h5 a {
  color: #fff;
}

.team-bio span {
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}

.team-social {
  position: absolute;
  margin-bottom: 10px;
  text-align: center;
  top: 15px;
  right: -15px;
  opacity: 0;
  transition: all .5s ease-in-out;
}

.team-item:hover .team-social {
  opacity: 1;
  right: 15px;
}

.team-social a {
  display: block;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  margin-top: 8px;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
}

.team-social a:hover {
  background: #00ADFF;
  color: #fff;
}


/* ===================
document css 
====================== */

.document-item {
  text-align: center;
  border-radius: 8px;
  padding: 20px 20px 50px 20px;
  position: relative;
  transition: all .5s ease-in-out;
}

.document-item:hover {
  transform: translateY(-10px);
}

.document-icon {
  color: #fff;
  font-size: 50px;
}

.document-item h6 {
  margin-top: 15px;
  color: #fff;
}

.document-download {
  position: absolute;
  background: #fff;
  bottom: -18px;
  left: 20px;
  right: 20px;
  padding: 5px;
  border-radius: 50px;
}

.document-download a {
  color: #F07E7E;
  font-weight: 500;
}

.document-download a:hover {
  color: #6760F8;
  font-weight: 500;
}

.document-color-1 {
  background: linear-gradient(to top right, #3a67f6 0%, #6cdafc 90%, #67cffb 100%);
}

.document-color-2 {
  background: linear-gradient(to top right, #ed6a7f 0%, #f7bd7b 90%, #f9cc7a 100%);
}

.document-color-3 {
  background: linear-gradient(to top right, #02cafd 0%, #55e8c6 90%, #76f4b0 100%);
}

.document-color-4 {
  background: linear-gradient(to top right, #9a26f6 0%, #e24e8d 90%, #e65087 100%);
}

.document-color-5 {
  background: linear-gradient(to top right, #5977F6 0%, #734EFA 90%, #8532FD 100%);
}

.document-color-6 {
  background: linear-gradient(to top right, #FFAD2C 0%, #FF7A36 90%, #FF643A 100%);
}


@media all and (min-width: 992px) and (max-width: 1199px) {
  .document-download a {
    font-size: 14px;
  }

  .document-download{
    left: 10px;
    right: 10px;
  }
}

@media all and (max-width: 991px) {
  .document-item {
    margin-bottom: 50px;
  }
}



/* ===================
our rating css 
====================== */

.rating-item {
  text-align: center;
  position: relative;
  padding: 40px 20px 20px 20px;
  border-radius: 8px;
  background: linear-gradient(to right, #160e6f 0%, #3e27be 50%, #160e6f 100%);
}

.rating-title {
  position: absolute;
  color: #fff !important;
  top: -15px;
  left: 15px;
  right: 15px;
  border-radius: 8px;
  padding: 5px;
  font-weight: 500;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
}

.rating-item h3 {
  font-weight: bold;
  font-size: 50px;
  color: #fff;
  margin-bottom: 5px;
}

.rating-icon i {
  color: #00ACFF;
}

@media all and (min-width: 992px) and (max-width: 1199px) {
  .rating-item {
    padding: 40px 10px 10px 10px;
  }
}

@media all and (max-width: 991px) {
  .rating-item {
    margin-bottom: 50px;
  }
}


/* ===================
download css 
====================== */

.download-btn {
  margin-top: 50px;
}

.download-btn a {
  margin-right: 10px;
}

.download-btn-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.download-text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.download-btn-icon {
  font-size: 35px;
}

.download-text-subtitle {
  font-size: 12px;
}

.download-text-title {
  line-height: 1;
}

@media all and (max-width: 991px) {
  .download-content {
    margin-top: 40px;
  }
}



/* ===================
faq css 
====================== */

.faq-area {
  position: relative;
}

.faq-wrapper .nav {
  margin-bottom: 40px;
}

.faq-wrapper .nav .nav-link {
  border-radius: 0;
  padding: 10px 30px;
  font-weight: 500;
  color: #fff;
  font-size: 18px;
  background: transparent;
  border-bottom: 2px solid rgba(255, 255, 255, .1);
}

.faq-wrapper .nav .nav-link.active {
  color: #00ACFF;
  border-bottom-color: #00ACFF;
}

.faq-area .accordion-item {
  border: none;
  margin-bottom: 30px;
  color: #fff;
  background: #182072;
  border-radius: 8px !important;
  box-shadow: 0 0 40px 5px rgb(0, 0, 0 / 5%);
}

.faq-area .accordion-item span {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}

.faq-area .accordion-item i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-image: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  border-radius: 50px;
  text-align: center;
  color: #fff;
}

.faq-area .accordion-button:not(.collapsed) {
  color: #00ACFF;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.faq-area .accordion-button {
  border-radius: 0px !important;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  background: transparent;
  box-shadow: none !important;
}

.faq-area .accordion-button:not(.collapsed) {
  border-bottom: 1px dashed #00ACFF;
}

.faq-area .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-area .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media all and (max-width: 991px) {
  .faq-img {
    margin-bottom: 50px;
  }

  .faq-area .accordion-button {
    font-size: 16px;
  }
}


/* ===================
partner css 
====================== */

.partner-item {
  margin: 25px 0;
  text-align: center;
}




/* ===================
breadcrumb css
====================== */

.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 190px;
  padding-bottom: 150px;
  background: linear-gradient(to right, #000461 0%, #182072 50%, #000461 100%);
  z-index: 1;
}

.site-breadcrumb::before{
  content: "";
  position: absolute;
  background-image: url(../img/shape/shape-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: #00ADFF;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: #fff;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '\f101';
  font-family: 'Font Awesome 6 Pro';
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: #00ADFF;
}

@media (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 240px;
  }
}

/* ===================
pagination css 
====================== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.pagination .page-link {
  border: none;
  background: #182072;
  color: #fff;
  margin: 0 10px;
  border-radius: 8px !important;
  width: 40px;
  height: 40px;
  line-height: 28px;
  text-align: center;
  transition: all .5s ease-in-out;
}

.pagination .page-link:hover, .pagination .page-item.active .page-link {
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
}



/* ===================
auth css 
====================== */

.login-form {
  padding: 50px;
  border-radius: 10px;
  background: linear-gradient(to right, #160e6f 0%, #3e27be 50%, #160e6f 100%);
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.login-form .login-header {
  text-align: center;
  margin-bottom: 50px;
}

.login-form .login-header img {
  width: 200px;
  margin-bottom: 10px;
}

.login-form .login-header h3 {
  color: #00ADFF;
  margin-bottom: 5px;
  font-weight: 800;
}

.login-form .login-header p {
  font-size: 20px;
}

.login-form .login-footer {
  margin-top: 40px;
}

.login-form .login-footer p {
  text-align: center;
}

.login-form .login-footer a {
  color: #00ADFF;
  font-weight: 500;
  transition: .5s;
}

.login-form .login-footer a:hover {
  color: #0063E2;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  color: #fff;
  margin-bottom: 5px;
}

.login-form .form-group .form-control {
  border-radius: 8px;
  padding: 12px 18px;
  box-shadow: none;
  transition: .5s;
  border-color: transparent;
  background-color: #16087F;
  color: #fff;
}

.login-form .form-group .form-control:focus {
  border-color: #00ADFF;
}

.login-form .form-group .form-control::placeholder {
  color: #00ADFF;
}

.login-form .form-check-input {
  box-shadow: none;
  border: none;
  background-color: #16087F;
}

.login-form .forgot-pass {
  color: #00ADFF;
  font-weight: 500;
  transition: .5s;
}

.login-form .forgot-pass:hover {
  color: #0063E2;
}

.login-form .theme-btn {
  width: 100%;
}

.login-form .form-check-input {
  margin-top: 6.3px;
}

.login-form .form-check-label a {
  color: #00ADFF;
  font-weight: 500;
  transition: .5s;
}

.login-form .form-check-label a:hover {
  color: #0063E2;
}

.other-login-signup {
  text-align: center;
  overflow: hidden;
}

.other-login-signup .or-login-signup {
  text-align: center;
  display: inline-block;
  position: relative;
  padding: 0 25px;
  z-index: 1;
}

.other-login-signup .or-login-signup:before {
  display: inline-block;
  content: "";
  height: 1px;
  width: 100%;
  background-color: #e5e9f2;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  z-index: 1;
}

.other-login-signup .or-login-signup:after {
  display: inline-block;
  content: "";
  height: 1px;
  width: 100%;
  background-color: #e5e9f2;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  z-index: 1;
}

.social-login {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.social-login a {
  padding: 8px 18px;
  border-radius: 7px;
  margin: 0 4px;
  transition: .5s;
}

.social-login a i {
  margin-right: 6px;
}

.social-login .btn-f {
  background-color: #4064ac;
  border-color: #4064ac;
  color: #fff;
}

.social-login .btn-g {
  background-color: #dd4b39;
  border-color: #dd4b39;
  color: #fff;
}

.social-login .btn-t {
  background-color: #00a7e6;
  border-color: #00a7e6;
  color: #fff;
}

.social-login a:hover {
  opacity: .8;
}

@media only screen and (max-width: 991px) {
  .login-form {
    padding: 40px 20px;
  }
}



/* ===================
coming soon css 
====================== */

.coming-soon {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  position: relative;
}

.coming-soon .container {
  position: relative;
}

.coming-soon:before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.coming-soon .newsletter-form {
  position: relative;
  margin-top: 30px;
}

.coming-soon .newsletter-form .input-newsletter {
  height: 60px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 25px;
  box-shadow: none;
}

.coming-soon .newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  height: auto;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  display: inline-block;
  color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  transition: .5s;
}

.coming-soon .newsletter-form button:hover {
  background: linear-gradient(to right, #301EA2 0%, #442BCB 50%, #301EA2 100%);
  color: #fff;
}

.coming-social {
  margin-top: 30px;
  text-align: center;
}

.coming-social a {
  color: #fff;
  margin: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  line-height: 40px;
  text-align: center;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  display: inline-block;
  transition: .5s;
}

.coming-social a:hover {
  background: linear-gradient(to right, #301EA2 0%, #442BCB 50%, #301EA2 100%);
  color: #fff;
}

.countdown-wrap {
  margin-top: 30px;
}

.countdown-single {
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 3px 24px rgb(0, 0, 0 / 10%);
}

.countdown-single h2 {
  color: #fff;
}

.countdown-single h5 {
  color: #fff;
}

/* ===================
error css 
====================== */

.error-wrapper {
  text-align: center;
}

.error-wrapper h1 {
  font-size: 200px;
  font-weight: bold;
  color: #FF5E14;
}

.error-wrapper h1 span {
  color: #05103B;
}

.error-wrapper h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #fff;
}

.error-wrapper img {
  width: 100%;
}

.error-wrapper .theme-btn {
  margin-top: 30px;
}

@media all and (max-width: 767px) {
  .error-wrapper h1 {
    font-size: 160px;
  }
}

/* ===================
terms/privacy css 
====================== */

.terms-content:not(:last-child) {
  margin-bottom: 54px;
}

.terms-content:first-child {
  margin-top: -3px;
}

.terms-content .terms-list {
  margin-top: 37px;
}

.terms-content h3 {
  margin-bottom: 23px;
  position: relative;
  color: #fff;
}

.terms-content p:not(:last-child) {
  margin-bottom: 26px;
}

.terms-list li:not(:last-child) {
  margin-bottom: 16px;
}



/* ===================
quote css 
====================== */

.quote-form h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 5px;
}

.quote-form p {
  margin-bottom: 25px;
}

.quote-form .form-group {
  margin-bottom: 20px;
}

.quote-form .form-control {
  background-color: #182072;
  padding: 14px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  color: #fff;
  box-shadow: none;
  transition: all .5s ease-in-out;
}

.quote-form .form-control:focus {
  border-color: #00ADFF;
}

.quote-form .form-control::placeholder {
  color: rgba(255, 255, 255, .5);
}

@media all and (max-width: 767px) {
  .quote-img {
    margin-bottom: 50px;
  }
}



/* ===================
footer css 
====================== */

.footer-area {
  background: linear-gradient(to right, #000461 0%, #182072 50%, #000461 100%);
  position: relative;
  z-index: 1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 240px;
  margin-bottom: 40px;
}

.copyright {
  padding: 20px 0;
  background: linear-gradient(to right, #160e6f 0%, #3e27be 50%, #160e6f 100%);
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: #f5faff;
  transition: all .5s ease-in-out;
}

.copyright .footer-menu li a:hover {
  color: #E9895E;
}

.copyright .copyright-text {
  color: #f5faff;
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: #00ADFF;
  font-weight: 600;
}

.footer-widget-title {
  color: #fff;
  position: relative;
  font-size: 25px;
  padding-bottom: 20px;
  margin-bottom: 40px;
  z-index: 1;
}

.footer-widget-title::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 15px;
  height: 3px;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  bottom: 0;
  left: 0;
}

.footer-widget-title::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 35px;
  height: 3px;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  bottom: 0;
  left: 20px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-list li a {
  color: #fff;
  transition: all .5s ease-in-out;
}

.footer-list li a i {
  margin-right: 5px;
  color: #00ADFF;
}

.footer-list li a:hover {
  padding-left: 10px;
  color: #00ADFF;
}

.footer-widget-box p {
  color: #fff;
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.footer-social li a i {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50px;
  text-align: center;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  color: #fff;
  transition: all .5s ease-in-out;
}

.footer-social li a i:hover {
  background: #00ADFF;
  color: #fff;
}

.footer-newsletter .subscribe-form .form-control {
  border: 2px solid #e8e8e8;
  height: 55px;
  padding: 0 140px 0 20px;
  border-radius: 50px;
  font-size: 16px;
  color: #fff;
  box-shadow: none;
  background-color: transparent;
}

.footer-newsletter .subscribe-form .form-control::placeholder {
  color: #F2F3F5;
  opacity: 1;
}

.footer-newsletter .subscribe-form .form-group {
  position: relative;
}

.footer-newsletter .subscribe-form .theme-btn {
  padding: 7px 22px;
  position: absolute;
  font-size: 15px;
  top: 6.7px;
  right: -20px;
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #f5faff;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-contact li a {
  color: #f5faff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contact li i {
  width: 12px;
  height: 30px;
  font-size: 18px;
  margin-right: 15px;
  border-radius: 5px;
  line-height: 31px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #00ADFF;
}

@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }
}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .footer-newsletter .subscribe-form .theme-btn{
    right: -8px;
  }
}

/* ======================
search popup
====================== */

.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, .8);
  transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
  width: 80%;
}

.search-active .search-popup {
  transform: translateY(0%);
  margin-top: 0;
}

.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  border: none;
  margin: 0 auto;
  margin-top: -200px;
  text-align: center;
  background: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  transition-delay: 1500ms;
}

.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all 300ms ease;
}

.search-active .search-popup form {
  transform: scaleX(1);
  transition-delay: 1200ms;
}

.search-popup .form-group {
  position: relative;
  margin: 0px;
  overflow: hidden;
}

.search-popup .form-group input[type="text"], .search-popup .form-group input[type="search"] {
  position: relative;
  width: 100%;
  height: 70px;
  outline: none;
  border-radius: 8px;
  border: none;
  padding: 0 100px 0 35px;
  transition: all 500ms ease;
  text-transform: capitalize;
}

.search-popup .form-group input[type="submit"], .search-popup .form-group button {
  position: absolute;
  right: 10px;
  top: 7px;
  border-radius: 8px;
  background-image: linear-gradient(to right, #0063E2 0%, #00ADFF 51%, #0063E2 100%);
  text-align: center;
  font-size: 20px;
  color: #fff !important;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: all 500ms ease;
}

.search-popup .form-group input[type="submit"]:hover, .search-popup .form-group button:hover {
  background: #00ADFF;
}

.search-popup input::placeholder, .search-popup textarea::placeholder {
  color: #51668a;
}

.mobile-search-btn {
  display: none;
}

@media all and (max-width: 991px) {
  .mobile-search-btn {
    display: block;
    position: absolute;
    right: 15%;
    color: #fff;
    font-size: 20px;
  }

  .mobile-search-btn:hover {
    color: #fff;
  }
}

@media all and (max-width: 767px) {
  .mobile-search-btn {
    right: 20%;
  }
}


/* ======================
home 2
========================= */

.home-2{
  background: #3D1F94;
}

.home-2 .bg{
  background: #2C0E76;
}

.home-2 .hero-wrapper{
  padding-top: 180px;
  padding-bottom: 150px;
  background: linear-gradient(to right, #3B1985 0%, #1A0065 100%);
}

.home-2 .hero-wrapper::before{
  content: "";
  position: absolute;
  background-image: url(../img/shape/shape-4.png);
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .1;
  z-index: -1;
}

.home-2 .hero-wrapper .hero-sub-title{
  font-size: 20px;
  letter-spacing: 2px;
}

.home-2 .hero-wrapper .hero-title{
  text-transform: capitalize;
  font-weight: 500;
}

.home-2 .navbar.fixed-top{
  background: linear-gradient(to right, #3B1985 0%, #1A0065 100%);
}

.home-2 .site-title-tagline{
  color: #00ADFF;
  font-weight: 500;
  letter-spacing: 1px;
}

.home-2 .site-title-tagline::before{
  display: none;
}

.home-2 .site-title{
  font-weight: 500;
}

.home-2 .what-crypto-item{
  background: #2C0E76;
}

.home-2 .what-crypto-item i{
  color: #00ADFF;
}

.home-2 .service-item{
  background: #3D1F94;
  border-radius: 10px;
}

.home-2 .token-info,
.home-2 .token-sale-progress{ 
  background: #3D1F94;
  border-radius: 8px;
}

.home-2 .token-details-chart{
  background: #2C0E76;
  border-radius: 8px;
}

.home-2 .faq-area .accordion-item{
  background: #2C0E76;
}

.home-2 .blog-item{
  background: #2C0E76;
}

.home-2 .quote-form .form-control{
  background: #2C0E76;
}

.home-2 .footer-area{
  background: #2C0E76;
}

.home-2 .copyright{
  background: #3D1F94;
}

.home-2 .preloader{
  background: #3D1F94;
}


@media (min-width: 992px){

  .home-2 .navbar .nav-item .dropdown-menu {
    background: #3D1F94;
  }

  .home-2 .navbar .nav-item .dropdown-menu::before{
    color: #3D1F94;
  }

  .home-2 .navbar .nav-item .dropdown-menu li{
    border-bottom: 1px dashed rgba(255, 255, 255, .4);
  }

  .home-2 .navbar .nav-item .dropdown-menu li:last-child{
    border-bottom: none;
  }

  .home-2 .navbar .nav-item .dropdown-menu .dropdown-item::before{
    background: #00ADFF;
  }

  .home-2 .navbar .nav-item .dropdown-menu .dropdown-item:hover{
    color: #00ADFF;
    background: transparent;
  }

}



/* ======================
home 3
========================= */

.home-3 .bg{
  background: linear-gradient(to right, #061649 0%, #3E1481 50%, #061649 100%);
}

.home-3 .preloader{
  background: #3D1480;
}

.home-3 .hero-wrapper{
  padding-top: 200px;
  padding-bottom: 140px;
  background: linear-gradient(to right, #061649 0%, #3E1481 50%, #061649 100%);
}

.home-3 .navbar.fixed-top{
  background: linear-gradient(to right, #061649 0%, #3E1481 50%, #061649 100%);
}

.home-3 .footer-area{
  background: linear-gradient(to right, #061649 0%, #3E1481 50%, #061649 100%);
}

.home-3 .copyright{
  background: #000349;
}



/* ======================
home 4
========================= */

.home-4 .bg{
  background: linear-gradient(to right, #160e6f 0%, #3e27be 50%, #160e6f 100%);
}

.home-4 .hero-wrapper{
  background: linear-gradient(to right, #160e6f 0%, #3e27be 50%, #160e6f 100%);
}

.home-4 .site-title-tagline::before{
  display: none;
}

.home-4 .footer-area{
  background: linear-gradient(to right, #160e6f 0%, #3e27be 50%, #160e6f 100%);
}

.home-4 .copyright{
  background: #000349;
}


/* ======================
home 5
========================= */

.home-5{
  background: #ffffff;
}

.home-5 .bg{
  background: #0E0061;
}

.home .preloader{
  background: #0E0061;
}

.home-5 .site-title{
  color: #1F2471;
}

.hoome-5 .site-title-tagline::before{
 display: none;
}

.home-5 .hero-wrapper{
  padding-top: 180px;
  padding-bottom: 150px;
  position: relative;
  background: linear-gradient(to right, #0E0061 0%, #130274 50%, #0E0061 100%);
}

.home-5 .hero-wrapper::before{
  content: "";
  position: absolute;
  background-image: url(../img/shape/shape-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.home-5 .navbar.fixed-top{
  background: linear-gradient(to right, #0E0061 0%, #130274 50%, #0E0061 100%);
}

.home-5 .footer-area{
  background: #130273;
}

.home-5 .copyright{
  background: #0F0164;
}

.home-5 .feature-item{
  background: #0E0061;
  border-radius: 8px;
}

.home-5 .about-right{
  color: #1F2471;
}

.home-5 .about-list .text p{
  color: #1F2471;
} 

.home-5 .service-item{
  background: #0E0061;
  border-radius: 8px;
}

.home-5 .token-info,
.home-5 .token-sale-progress{
  background: #130273;
  border-radius: 8px;
}

.home-5 .token-details-chart-item h4,
.home-5 .chart-label li {
  color: #1F2471;
}

.home-5 .road-map-item-content{
  background: #0E0061;
}

.home-5 .download-content p{
  color: #1F2471;
}

.home-5 .document-download{
  box-shadow: 0 0 40px 5px rgb(0, 0, 0 / 5%);
}

.home-5 .faq-wrapper .nav .nav-link{
  color: #1F2471;
  border-bottom-color: rgba(0, 0, 0, .1);
}

.home-5 .faq-wrapper .nav .nav-link.active {
  color: #00ACFF;
  border-bottom-color: #00ACFF;
}

.home-5 .quote-form h2,
.home-5 .quote-form p{
  color: #1F2471
}


@media (min-width: 992px) {

  .home-5 .navbar .nav-item .dropdown-menu {
    background: #ffffff;
  }

  .home-5 .navbar .nav-item .dropdown-menu::before{
    color: #ffffff;
  }

  .home-5 .navbar .nav-item .dropdown-menu li{
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
  }

  .home-5 .navbar .nav-item .dropdown-menu li:last-child{
    border-bottom: none;
  }

  .home-5 .navbar .nav-item .dropdown-menu .dropdown-item{
    color: #1F2471;
  }

  .home-5 .navbar .nav-item .dropdown-menu .dropdown-item::before{
    background: #00ADFF;
  }

  .home-5 .navbar .nav-item .dropdown-menu .dropdown-item:hover{
    color: #00ADFF;
    background: transparent;
  }

}


/* ======================
3D Sosyal Medya İkonları
======================= */
.social-media-icons a {
  display: inline-block;
  margin: 0 10px;
  perspective: 500px;
}

.social-media-icons a i {
  display: inline-block;
  font-size: 1.5em;
  color: #fff !important;
  transform: rotateX(15deg) rotateY(15deg);
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-media-icons a:hover i {
  transform: rotateX(0deg) rotateY(0deg) translateZ(10px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.6);
}

.social-media-icons span {
  color: #fff;
  margin-right: 5px;
  font-weight: 500;
}

.dancing-title {

    font-size: 2.2em; 
    background: linear-gradient(180deg, #fff 0%, #efa307 100%);
     -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color:
       transparent; font-family: 'Dancing Script', cursive; 
       font-weight: bold; 
       text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===================
Süt Dalgalı Mouse İzi için CSS 
======================= */
    .milk-trail-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 9999;
}

/* Sade ve şık değişiklikler */
.farm-title {
  color: #15ac90;
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.milk-text {
  color: #15ac90;
  font-weight: bold;
}

.farm-progress {
  height: 25px;
  background: rgba(21, 172, 144, 0.1);
  border-radius: 12px;
  overflow: hidden;
  margin: 15px 0;
}

.farm-progress .progress-bar {
  background: linear-gradient(90deg, #15ac90, #0d8c75);
  border-radius: 12px;
  transition: width 1s ease-in-out;
}

.token-sale-target {
  background: rgba(21, 172, 144, 0.05);
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
}

.token-sale-target span {
  color: #fff;
  font-size: 14px;
}

.token-sale-target h6 {
  color: #15ac90;
  font-size: 18px;
  margin-top: 5px;
}

.cow-button {
  background: linear-gradient(45deg, #15ac90, #0d8c75);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  color: #fff;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cow-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(21, 172, 144, 0.3);
}


/* scroll*/

/* ===================
İmajlar için Sağdan ve Soldan Gelen Animasyonlar
======================= */

/* Soldan gelen animasyon */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Sağdan gelen animasyon */
@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Yukarıdan gelen animasyon */
@keyframes slideInFromTop {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Aşağıdan gelen animasyon */
@keyframes slideInFromBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Zoom ile gelen animasyon */
@keyframes slideInWithZoom {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Dönerek gelen animasyon */
@keyframes slideInWithRotate {
  0% {
    transform: rotate(-180deg) scale(0.5);
    opacity: 0;
  }
  100% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
}

/* Animasyon sınıfları */
.animate-slide-left {
  animation: slideInFromLeft 1s ease-out forwards;
}

.animate-slide-right {
  animation: slideInFromRight 1s ease-out forwards;
}

.animate-slide-top {
  animation: slideInFromTop 1s ease-out forwards;
}

.animate-slide-bottom {
  animation: slideInFromBottom 1s ease-out forwards;
}

.animate-zoom-in {
  animation: slideInWithZoom 1s ease-out forwards;
}

.animate-rotate-in {
  animation: slideInWithRotate 1s ease-out forwards;
}

/* İmaj container'ları için temel stil */
.image-slide-container {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-slide-container img {
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}

.image-slide-container:hover img {
  transform: scale(1.05);
}

/* Farklı gecikme süreleri */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* 3D efektli slide animasyonları */
.slide-3d-left {
  animation: slide3DFromLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-3d-right {
  animation: slide3DFromRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slide3DFromLeft {
  0% {
    transform: translateX(-100%) rotateY(-90deg);
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(0) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes slide3DFromRight {
  0% {
    transform: translateX(100%) rotateY(90deg);
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(0) rotateY(0deg);
    opacity: 1;
  }
}

/* Süt temalı özel animasyonlar */
.milk-slide-left {
  animation: milkSlideFromLeft 1.5s ease-out forwards;
}

.milk-slide-right {
  animation: milkSlideFromRight 1.5s ease-out forwards;
}

@keyframes milkSlideFromLeft {
  0% {
    transform: translateX(-120%) scale(0.8);
    opacity: 0;
    filter: blur(5px);
  }
  30% {
    opacity: 0.3;
    filter: blur(3px);
  }
  60% {
    transform: translateX(-10%) scale(1.02);
    opacity: 0.8;
    filter: blur(1px);
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes milkSlideFromRight {
  0% {
    transform: translateX(120%) scale(0.8);
    opacity: 0;
    filter: blur(5px);
  }
  30% {
    opacity: 0.3;
    filter: blur(3px);
  }
  60% {
    transform: translateX(10%) scale(1.02);
    opacity: 0.8;
    filter: blur(1px);
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

/* İnek temalı slide animasyonu */
.cow-slide-bounce {
  animation: cowBounceSlide 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes cowBounceSlide {
  0% {
    transform: translateX(-150%) scale(0.5) rotate(-20deg);
    opacity: 0;
  }
  50% {
    transform: translateX(20%) scale(1.1) rotate(5deg);
    opacity: 0.8;
  }
  70% {
    transform: translateX(-5%) scale(0.95) rotate(-2deg);
    opacity: 0.9;
  }
  100% {
    transform: translateX(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Paralaks efektli slide */
.parallax-slide {
  animation: parallaxSlideIn 2s ease-out forwards;
}

@keyframes parallaxSlideIn {
  0% {
    transform: translateX(-100%) translateZ(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateZ(0);
    opacity: 1;
  }
}

/* Responsive ayarlar */
@media (max-width: 768px) {
  .animate-slide-left,
  .animate-slide-right {
    animation-duration: 0.8s;
  }
  
  .slide-3d-left,
  .slide-3d-right {
    animation-duration: 1s;
  }
  
  .milk-slide-left,
  .milk-slide-right {
    animation-duration: 1.2s;
  }
}

/* ===================
Buy Token Button Zoom Out Up Animation
======================= */

/* Zoom out up animation keyframes - Enhanced upward movement */
@keyframes zoomOutUp {
  0% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  20% {
    transform: scale(1.05) translateY(-15px);
    opacity: 1;
  }
  50% {
    transform: scale(0.9) translateY(-40px);
    opacity: 0.8;
  }
  80% {
    transform: scale(0.6) translateY(-80px);
    opacity: 0.4;
  }
  100% {
    transform: scale(0.3) translateY(-120px);
    opacity: 0;
  }
}

/* Alternative pure upward movement animation */
@keyframes slideUpAndFade {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  30% {
    transform: translateY(-20px);
    opacity: 1;
  }
  70% {
    transform: translateY(-60px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}

/* Buy token button enhanced styles */
.cow-button {
  background: linear-gradient(45deg, #15ac90, #0d8c75);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  color: #fff;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.cow-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(21, 172, 144, 0.3);
  color: #fff;
  text-decoration: none;
}

.cow-button:focus,
.cow-button:active {
  color: #fff;
  text-decoration: none;
  outline: none;
}

/* Zoom out up animation class */
.zoom-out-up {
  animation: zoomOutUp 0.8s ease-in-out forwards;
}

/* Loading state for button during animation */
.cow-button.loading {
  pointer-events: none;
  position: relative;
}

.cow-button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Button ripple effect on click */
.cow-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cow-button:active::before {
  width: 300px;
  height: 300px;
}

/* Enhanced button styles for different contexts */
.hero-btn .cow-button {
  font-size: 1.1em;
  padding: 14px 35px;
}

.token-sale-btn .cow-button {
  font-size: 1.08em;
  padding: 12px 32px;
}

/* Mobile responsive button */
@media (max-width: 768px) {
  .cow-button {
    padding: 10px 25px;
    font-size: 0.95em;
  }
  
  .hero-btn .cow-button {
    padding: 12px 30px;
    font-size: 1em;
  }
}

@media (max-width:600px){
  .navbar-collapse.show {
    background: repeating-linear-gradient(135deg,#fffbe6 0 20px,#fff 20px 40px);
    box-shadow: 0 8px 32px #0002;
    position: relative;
    overflow: hidden;
  }
  .navbar-collapse.show::before {
    content: '';
    position: absolute; left:0;top:0;width:100%;height:100%;
    background: url('assets/img/milk-foam.svg') repeat-x bottom;
    opacity: 0.3; pointer-events: none;
    animation: foamMove 6s linear infinite;
  }
  @keyframes foamMove { 100% { background-position-x: 200px; } }
}

.milk-bubble-game-bubble {
  position: fixed;
  bottom: -60px;
  left: 50vw;
  width: 48px;
  height: 48px;
  background: radial-gradient(circle at 30% 30%, #fff 80%, #e0e0e0 100%);
  border-radius: 50%;
  box-shadow: 0 4px 16px #fff8;
  z-index: 99999;
  animation: milkBubbleFloat 4s linear forwards;
  transition: transform 0.2s, opacity 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.milk-bubble-game-bubble.popped {
  animation: none;
  transform: scale(1.5);
  opacity: 0;
  background: radial-gradient(circle at 50% 50%, #fff 90%, #f7e7b7 100%);
  box-shadow: 0 0 32px #fff;
  transition: transform 0.3s, opacity 0.3s;
}

@keyframes milkBubbleFloat {
  0% { bottom: -60px; opacity: 0.7; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { bottom: 90vh; opacity: 0; }
}

.milk-bubble-game-launcher {
  position: fixed;
  bottom: 24px;
  left: 18px;
  z-index: 10001;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #fffbe6 60%, #e0e0e0 100%);
  border-radius: 50%;
  box-shadow: 0 4px 16px #0002;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 3px solid #fff;
}
.milk-bubble-game-launcher:hover {
  box-shadow: 0 8px 24px #0004;
  transform: scale(1.08);
}