@import "./root.css";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a,
body,
button {
  font-family: "Manrope", serif;
}

body {
  background: #141416 !important;
  color: #fff;
}

.contain-width {
  /* max-width: 90%;
  margin: 0 auto; */
  padding: 20px;
}

li {
  list-style: var(--none);
}

a {
  text-decoration: var(--none);
  cursor: pointer;
}

a:hover {
  color: #fff;
}

.cursor {
  cursor: pointer;
}

.btn:active,
.btn:focus,
.btn:focus-within,
.btn:focus-visible {
  box-shadow: none !important;
}

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

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

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

.flex-4 {
  display: flex;
  align-items: flex-end;
}

.flex-5 {
  display: flex;
  align-items: center;
  gap: 20px;
}
.flex-6 {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
}

.common-btn {
  /* background: var(--btn-primary); */
  padding: 10px 24px;
}
.common-btn a{
  color: #fff;
}

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

.orange-bg {
  border-radius: 12px;
  background: #0060bf !important;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.5px;
  padding: 13px 57px;
}

/* button animationb*/
.animated-button2 {
  cursor: pointer;
  transition: all 0.25s ease-out;
  display: inline-block;
}

.animated-button2:hover {
  transform: translateY(-8px);
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.green-txt {
  color: #01bc8d;
}

.red-txt {
  color: #f65454;
}

.green-btn {
  background: #27ad75;
}

.red-btn {
  background: #e2464a;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background-color: #555;
}

/* Header css */

.header-sect {
  position: relative;
}

.header-sect::before {
  content: "";
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    270deg,
    #6fffe9 0%,
    #20232d 23.87%,
    #bfa2f6 50.45%,
    #20232d 73.42%,
    #effefc 100%
  );
  z-index: 999;
}

.custom_nav {
  position: fixed;
  top: 0;
  width: 100%;
  /* background-color: #fff; */
  z-index: 999;
  height: 100px;
}

section.header-sect.is-sticky
  nav.navbar.navbar-dark.navbar-expand-lg.custom_nav {
  background: #000;
  animation: slideDown 0.6s ease-out;
}

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

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

.custom_nav .contain-width {
  padding: 10px 15px;
  width: 100%;
}

.navbar-toggler,
.btn-close {
  box-shadow: none !important;
}

.custom_nav .border-btn {
  border: 1px solid #bfbfbf;
  border-radius: 50px;
  padding: 8px 23px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.custom_nav ul.navbar-nav li a {
  color: #cdd0d5;
  font-size: 16px;
  font-weight: 500;
}

/* footer css */

footer .bdr {
  border-bottom: 1px solid rgb(50 115 0 / 10%);
  padding-bottom: 10px;
}

footer .fl_x {
  display: flex;
  flex-wrap: wrap;
}

footer .fl_x > div {
  flex-grow: 1;
}

footer .fl_x h5 {
  font-weight: 500;
  font-size: 14px;
  line-height: 166%;
  letter-spacing: 0.03em;
  color: #327300;
  opacity: 0.5;
  margin-bottom: 12px;
}

footer .fl_x ul {
  padding: 0;
  list-style-type: none;
  margin: a;
}

footer .fl_x li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 161%;
  letter-spacing: 0.03em;
  color: #327300;
  margin-bottom: 12px;
  display: block;
}

footer .flx {
  display: flex;
  gap: 13px;
  align-items: center;
  flex-wrap: wrap;
}

footer .flx a {
  border: 1.9px solid #327300;
  border-radius: 10px;
  color: #327300;
  padding: 3px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-align: left;
}

footer .flx a svg {
  width: 20px;
}

footer .flx a .sm {
  font-size: 10px;
  display: block;
  margin-bottom: -8px;
}

footer .flx a .sm + span {
  font-size: 16px;
  font-weight: 500;
}

footer .social a {
  background: #327300;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .social {
  display: flex;
  gap: 20px;
  padding: 0;
}

footer .ty_flx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

footer .ty_flx .made {
  font-weight: 500;
  font-size: 14px;
  line-height: 166%;
  letter-spacing: 0.03em;
  color: #327300;
}

footer .dropdown button {
  border-radius: 13px;
  border: 1px solid #eaf0e5 !important;
  background: transparent;
  font-weight: 500;
  font-size: 15px;
  line-height: 157%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #327300 !important;
  align-items: center;
  display: flex;
  gap: 7px;
}

footer .dropdown button::after {
  background: url(../image/arw.png) no-repeat center;
  width: 13px;
  height: 8px;
  background-size: contain;
  border: 0;
}

footer .dropdown button.show::after {
  transform: rotate(180deg);
}

footer .dropdown-item:active {
  background-color: transparent;
  color: #000;
}

footer .ctns {
  opacity: 0.5;
  font-weight: 500;
  font-size: 10px;
  line-height: 168%;
  letter-spacing: 0.03em;
  color: #327300;
}

/* common css */

.common-btn {
  position: relative;
  transition: all 0.3s ease-in-out;
  outline: none;
  overflow: hidden;
  font-size: 16px;
  box-shadow: none;
  background: #025ebf !important;
  border-radius: 6px;
  width: 100%;
  text-transform: capitalize;
  color: #fff;
  text-align: center;
  margin: 15px 0;
}

.common-btn button {
  font-size: 16px;
  box-shadow: none;
  width: 100%;
  text-transform: capitalize;
  padding: 0 !important;
  color: #fff;
  text-align: center;
  border: none;
}

.login-h-btn button {
  transition: all 0.3s ease-in-out;
  outline: none;
}

.common-btn:hover {
  transform: scale(1.05);
  box-shadow: none;
  background: #025ebf !important;
}
.common-btn button:hover {
  background: #025ebf !important;
  border: none;
  font-size: 16px;
}

.common-btn:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.common-btn button,
.transprant-btn a {
  color: #fff;
}

.common-btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.transprant-btn {
  font-size: 16px;
  box-shadow: none;
  border: 1px solid #666666;
  border-radius: 6px;
  padding: 10px 40px;
  text-align: center;
  margin: 15px 0;
  width: 100%;
}
.popup-btn .transprant-btn,
.popup-btn .common-btn {
  width: 30% !important;
}
.btn-close:before {
  font-family: FontAwesome;
  content: "\f00d";
  position: relative;
  left: 0;
  right: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #636364;
  border-radius: 30px;
  padding: 3px 6px;
}
.btn-close {
  background: none !important;
}
.header-menu ul.dropdown-menu.show {
  border-radius: 8px;
  border: 1px solid #262626;
  background: #222223;
  transform: translate(0, 60px) !important;
}
.dropdown-menu .dropdown-item:focus, .dropdown-menu .dropdown-item:hover {
  background-color: #29292A;
}
.header-menu ul.dropdown-menu.show a {
  color: #fdfdfd !important;
}