@font-face {
  font-family: "NeueMontreal Regular";
  src: url("../fonts/NeueMontreal-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "NeueMontreal Light";
  src: url("../fonts/NeueMontreal-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "NeueMontreal Medium";
  src: url("../fonts/NeueMontreal-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "NeueMontreal Bold";
  src: url("../fonts/NeueMontreal-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

:root {
  /* --main-primary: rgba(7, 7, 36, 1); */
  --main-primary: #000;
  --main-secondary: #920AA8;
  --main-teritary: #19CC7B;
  --main-neutral: rgba(255, 233, 129, 1);
  --main-grey: rgba(202, 206, 226, 1);
  --main-secondary-2: rgba(228, 254, 103, 1);
  --font-family-regular: 'NeueMontreal Regular', sans-serif;
  --font-family-light: 'NeueMontreal Light', sans-serif;
  --font-family-medium: 'NeueMontreal Medium', sans-serif;
  --font-family-bold: 'NeueMontreal Bold', sans-serif;
  --heading-text: 'Calistoga', cursive;
}

html {
  font-size: 15px;
  height: 100%;
}

body {
  font-family: var(--font-family-regular);
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  color: #737373;
  display: flex;
  flex-direction: column;
  height: 100%;
}

h1, h2, h3, h4, h5, h6{
  color: #2F2F2F;
}

.main-content {
  flex: 1 0 auto;
}

.main-footer {
  flex-shrink: 0;
}

.btn-main {
  background-color: #fff;
  color: var(--main-primary)
}

.btn-main:hover {
  background-color: var(--main-secondary);
  color: var(--main-primary)
}

.text-main-2{
  color: var(--main-secondary)
}

.text-main-3{
  color: var(--main-teritary);
}

.rounded-50{
  border-radius: 50px;
}

.rounded-30 {
  border-radius: 30px;
}

.btn-main-2 {
  background-color: var(--main-secondary);
}

.btn-main-2:hover {
  background-color: var(--main-secondary-2);
}

.bg-main-secondary-2 {
  background-color: var(--main-secondary-2);
}

.bg-main-primary {
  background-color: var(--main-primary);
}

.btn-main-3 {
  background-color: var(--main-teritary);
}

.btn-main-2:hover .btn-arrow {
  transition: all 0.3s ease-in;
  transform: translateX(5px);
}

.btn-height {
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-rounded {
  border-radius: 5px;
}

.hero-section {
  padding-top: 100px;
}

.hero-section-layout {
  padding-top: 50px;
  padding-bottom: 50px;
}

.text-bold {
  font-family: var(--font-family-bold);
}

.text-medium {
  font-family: var(--font-family-medium);
}

.text-main-primary {
  color: var(--main-primary)
}

.text-carousel .carousel-item-next:not(.carousel-item-start),
.text-carousel .active.carousel-item-end {
  transform: translateY(100%) !important;
}

.text-carousel .carousel-item-prev:not(.carousel-item-end),
.text-carousel .active.carousel-item-start {
  transform: translateY(-100%) !important;
}

.hero-text {
  font-size: 20px;
}

.hero-heading {
  font-size: 4.5rem;
  /* font-family: var(--heading-text); */
}

.heading {
  /* font-family: var(--heading-text); */
  font-size: 3.2rem;
}

.heading-2 {
  /* font-family: var(--heading-text); */
  font-size: 2rem;
}

.text-main-grey {
  color: var(--main-grey)
}

.card-info {
  height: 350px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.object-fit-cover {
  object-fit: cover;
}

.object-fit-contain {
  object-fit: contain;
}

.object-position-center {
  object-position: center center;
}

.country-icon {
  height: 30px;
  width: 30px;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
}

.card-text-position {
  position: absolute;
  left: 30px;
  bottom: 30px;
  font-family: var(--heading-text);
  color: white;
}

.overlay-effect-1 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(228, 254, 103, 0.09);
  height: 100%;
}

.overlay-effect-2 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 233, 128, 0.1);
  height: 100%;
}

.overlay-hover:hover .overlay-effect-1 {
  transition: all 0.5s ease-in;
  z-index: 1;
}

.overlay-hover:hover .overlay-effect-2 {
  transition: all 0.5s ease-in;
  z-index: 1;
}

.overlay-hover:hover .card-info-size {
  transition: all 0.5s ease-in;
  transform: scale(1.2);
}

.triangle-icon {
  position: absolute;
  right: -131px;
  bottom: 0;
  z-index: 1;
}

.overlay-hover:hover .triangle-icon {
  right: 0px;
  transition: all 0.5s ease-in;
}

.card-img-box {
  padding-top: 25px;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: url(../images/dots.png);
  background-color: rgba(27, 30, 49, 1);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-position: center center;
  background-size: contain;
}

.coin-1{
  position: absolute;
  z-index: 1;
  width: 250px;
  top: 0;
  left: 0;
}

.coin-2 {
  position: absolute;
  z-index: 1;
  width: 250px;
  bottom: 0;
  right: 0;
}

.img-box{
  height: 100px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.box-dots {
  background: url(../images/dots-3.png);
  background-color: rgba(27, 30, 49, 1);
  background-position: center center;
  background-size: 280px;
}

.card-text-box {
  background: url(../images/dots.png);
  background-color: var(--main-primary);
  background-position: center center;
  background-size: contain;
}

.card-text-box-2 {
  background: url(../images/dots-2.png);
  background-color: var(--main-secondary-2);
  background-position: center center;
  background-size: contain;
}

.card-box-hover:hover .card-img-box img {
  transition: all 0.5s ease-in;
  transform: scale(1.2);
  background-position: center center;
  background-size: contain;
}

.bg-main-secondary {
  background-color: var(--main-secondary);
  color: #fff;
}

.mt-offset {
  margin-top: -261px;
}

.py-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.border-radius-16 {
  border-radius: 16px;
}

.bg-color-1 {
  background-color: rgba(244, 246, 255, 1);
}

.bg-color-2 {
  background-color: rgba(255, 233, 129, 1);
}

.card-custom-view {
  background-color: rgba(255, 255, 255, 0.91);
  border: 2px solid rgba(46, 47, 55, 1);
  box-shadow: -10px 10px 0px 0px rgba(0, 0, 0, 1);
}

.ft-md {
  font-size: 1.2rem
}

.icon-wid-size {
  width: 45px;
}

.font-xs {
  font-size: 13px;
  color: rgba(157, 161, 183, 1);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.ft-xs {
  font-size: 13px;
}

.download-btn {
  height: 50px;
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url(../images/arrow-down-custom.svg);
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../images/arrow-down-custom.svg);
  transform: rotate(-180deg);
}

.footer-list li {
  margin-bottom: 10px;
  gap: 10px;
}

.footer-list {
  color: rgba(237, 239, 250, 1);
}

.footer-list a {
  color: rgba(237, 239, 250, 1);
}

.copy-right {
  color: rgba(157, 161, 183, 1)
}

.heading-3 {
  font-family: var(--heading-text);
}

.form-control {
  border-radius: 8px;
}

/* .form-control-dark-field {
  background-color: rgba(46, 47, 55, 1);
  color: rgba(157, 161, 183, 1);
  border: 1px solid rgba(126, 129, 149, 1)
}

.form-floating>label {
  color: rgba(157, 161, 183, 1);
}

.form-floating>.form-control:not(:placeholder-shown)~label {
  opacity: 1;
  transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
  color: var(--main-secondary-2);
} */

.border-top-bottom-left-0 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.border-top-bottom-left-rounded {
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
}

/* .form-control:valid {
  background-color: rgba(46, 47, 55, 1);
  color: #fff;
  border: 1px solid rgba(126, 129, 149, 1)
}

.input-group-custom {
  background-color: rgba(46, 47, 55, 1);
  color: rgba(157, 161, 183, 1);
  border: 1px solid rgba(126, 129, 149, 1)
} */

.border-radius-8 {
  border-radius: 8px !important;
}

.btn-black{
  background-color: #000;
  color: #fff;
}

.btn-black:hover {
  background-color: var(--main-secondary);
  color: #fff;
}

.waitlist-header {
  height: 300px;
}

.waitlist-absolute {
  width: 100%;
  z-index: 1;
  top: 30%;
}

.sky-animate {
  animation-name: sky-bg;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in;
}

.bg-dark-2{
  background-color: #191a1a;
}

.add-bg{
  background-image: url(../images/bg-red-2.png);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
}

.add-bg-2 {
  background-image: url(../images/main-pattern.png);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.pattern-bg{
  background-image: url(../images/cover-pattern-2.png);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.download-icon{
  height: 50px;
}

.main-nav-link .nav-link{
  color: #000;
}

.main-nav-link .nav-link.active {
  color: var(--main-teritary);
  border-bottom: 2px solid var(--main-teritary);
}

.footer-link li a{
  color: white;
  text-decoration: none;
}

.footer-links li a{
  display: inline-block;
  padding: 15px 20px;
  background: #191a1a;
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.text-p-custom{
  text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.footer-links{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

@keyframes sky-bg {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-150px);
  }
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1100px;
  }
}


@media screen and (max-width: 769px){
  .coin-1 {
    display: none;
  }

  .coin-2 {
    display: none;
  }
}