@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/Gilroy-Heavy.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Gilroy";
  src: url("/assets/fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: "Gilroy", sans-serif;
}

:root {
  --orangeColor: #ff8e00;
  --navyBlue: #2a2a45;
  --softWhite: #fbfeff;
  --darkBlue: #0b0f3c;
}

body {
  overflow-x: hidden;
}

a {
  color: white;
  font-weight: 500;
}

h1 {
  font-weight: 700;
  font-size: 56px;
  line-height: 80px;
  text-align: center;
}

h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 65px;
}

h3 {
  font-size: 1.5rem;
  line-height: 45px;
  font-weight: 700;
  text-align: center;
}

p {
  font-weight: 500;
  line-height: 35px;
  text-align: center;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo__container {
  height: 36px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  border-left-style: dotted;
  border-right-style: dotted;
  border-color: rgba(185, 185, 220, 0.3);
  padding: 0 1rem;
}

.button {
  font-weight: 700;
  font-size: 16px;
  line-height: 35px;
  text-align: center;
  color: #ffffff;
  border-radius: 5px;
  padding: 5px 30px;
  border: none;
  outline: none;
}

.button__filled {
  background-color: var(--orangeColor);
  box-shadow: 0 0 0 2px var(--orangeColor);
}

.button__outlined {
  background-color: transparent;
  box-shadow: 0 0 0 2px white;
}

.button__disabled {
  background-color: rgba(255, 142, 0, 0.5);
}

.button__outlined:hover {
  background-color: var(--orangeColor);
  box-shadow: 0 0 0 2px var(--orangeColor);
  transition: all 0.3s ease-in-out;
}

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

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

.flex-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-col {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
}

.items-left {
  align-items: start;
}

.justify-left {
  justify-content: flex-start;
}

.gap-1 {
  gap: 1rem;
}

.gap-half {
  gap: 1.5rem;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 2rem;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.banner {
  height: 100vh;
  width: 100%;
  background-color: var(--navyBlue);
  position: relative;
  z-index: 11;
  overflow: hidden;
  color: white;
  padding: 0 0.5rem;
  margin-bottom: 50px;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/bitcoin.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.header__underlined {
  position: absolute;
  left: 50%;
  z-index: -1;
  top: 40%;
  transform: translate(-50%, -50%);
}

.nav {
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.overlay {
  visibility: hidden;
}

.button__nav {
  justify-content: flex-end;
  gap: 1rem;
}

.nav__logo__toggler {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.nav__links__container {
  gap: 60px;
}

.banner__items {
  display: flex;
  align-items: center;
  height: calc(100vh - 150px);
  gap: 1rem;
}

.banner__button {
  gap: 1rem;
  justify-content: center;
}

.banner__content {
  max-width: 1024px;
  margin: 0 auto;
  justify-content: center;
}

.banner__content h1 {
  max-width: 800px;
  margin: 0 auto;
}

.banner__paragraph {
  font-weight: 500;
  line-height: 45px;
  padding: 2rem 0;
  font-size: 24px;
}

.mobile__tab__buttons {
  display: none;
}

.section {
  padding: 0 0.5rem;
  width: 100%;
  height: 100%;
}

.content__style {
  gap: 3rem;
  height: 100%;
  padding: 50px 1rem;
}

.monitor__image {
  position: relative;
}

.monitor__image__child {
  position: absolute;
  width: 90px;
  height: 90px;
  right: -7%;
  top: -7%;
}

.exchange__monitor {
  left: -7%;
}

.article__style {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  max-width: 640px;
  margin-right: auto;
}

.cordial__exchange {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cordial__exchange li {
  gap: 1rem;
}

.whyus__container {
  gap: 60px;
  padding: 50px 0;
}

.whyus__grid {
  display: grid;
  grid-gap: 2rem;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.why__image__container {
  width: 100px;
  height: 100px;
}

.why__article {
  justify-content: center;
  align-items: center;
}

.why__article h3 {
  margin-bottom: auto;
}

.why__paragraph {
  margin-bottom: auto;
}

.video__container {
  width: 100%;
  height: 100%;
  min-height: 396px;
}

.video__container iframe {
  height: 100%;
  width: 100%;
  min-height: 396px;
}

.how__it__works {
  flex-direction: row;
  padding: 100px 1rem;
  gap: 2rem;
}

.in__the__news {
  padding: 50px 1rem;
  gap: 60px;
}

.in__the__news__grid {
  display: grid;
  grid-gap: 2rem;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.news__article__card {
  gap: 0.5rem;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(13, 121, 189, 0.1);
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1rem;
}

.in__the__news__image {
  height: 32px;
}

.news__paragraph__header {
  color: #28287a;
  font-weight: 700;
}

.news__paragraph {
  font-size: 12px;
  line-height: 25px;
  font-weight: 500;
}

.leading__platform__wrapper {
  background-color: var(--darkBlue);
  padding: 0 0.5rem;
  width: 100%;
  color: white;
  height: 100%;
  z-index: 99;
  position: relative;
}

.leading__platform__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/worldMap.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.leading__platform h2 {
  z-index: 99;
}

.header__underlined__leading {
  position: absolute;
  left: 30%;
  z-index: -9;
  top: 70%;
}

.leading__platform__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-gap: 2rem;
  width: 100%;
  place-content: center;
  place-items: center;
  height: 100%;
}

.leading__article__card h2 {
  text-align: center;
}

.leading__platform {
  padding: 75px 1rem;
  gap: 60px;
}

.take__it__from__us__wrapper {
  padding: 0 0.5rem;
  background-color: var(--softWhite);
  position: relative;
  z-index: 11;
  overflow: hidden;
}

.right__basket {
  position: absolute;
  top: -5%;
  left: 40%;
  z-index: -1;
  opacity: 0.1;
}

.left__basket {
  position: absolute;
  bottom: -20%;
  left: -40%;
  z-index: -1;
  opacity: 0.1;
}

.accordion__container__wrapper {
  gap: 3rem;
  padding: 50px 1rem;
}

.accordion__header {
  justify-content: space-between;
  background-color: white;
  border-radius: 10px;
  padding: 1.2rem;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0px 10px 20px rgba(13, 121, 189, 0.1);
}

.accordion__content {
  display: none;
  padding: 1rem;
}

.rotate__accordion__icon {
  transform: rotate(180deg);
  transition: all 0.5s ease-in-out;
}

.relative {
  position: relative;
}

.everything__layout {
  padding-bottom: 100px;
}

.take__it__grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 2rem;
  height: 100%;
  padding: 10px 0;
  align-items: stretch;
  justify-content: space-between;
  scroll-snap-type: x mandatory;
}

.take__it__grid::-webkit-scrollbar {
  display: none;
}

.take__it__image__container {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
}

.truncate {
  /* overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical; */
}

.take__it__grid__card {
  background-color: white;
  border-radius: 5px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  /* max-height: 200px;
  min-height: 200px; */
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: 0px 5px 20px rgba(13, 121, 189, 0.1);
}

.take__it__grid__card:last-child {
  margin-right: 0.5rem;
}

.next {
  border-radius: 0 20px 0 100px;
  border-right: none;
  border-bottom: none;
  border: none;
  outline: none;
  transform: rotate(45deg);
  width: 20px;
  height: 20px;
  background: #d4d4da;
}

.prev {
  transform: rotate(225deg);
}

.add__active {
  background: var(--navyBlue);
}

.arrow__container {
  margin-top: -2rem;
  padding-right: 1rem;
  justify-content: flex-end;
}

@media screen and (max-width: 900px) {
  .hide__scrollbar {
    overflow: hidden;
  }

  .how__it__works {
    flex-direction: column-reverse;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .button__nav {
    display: none;
  }

  .mobile__tab__buttons {
    display: flex;
  }

  .nav__links__container {
    position: absolute;
    width: 100%;
    padding: 1rem;
    align-items: center;
    top: -1000px;
    visibility: hidden;
    left: 0;
    flex-direction: column;
    font-size: 14px;
    gap: 20px;
    transition: all 0.5s ease;
    background-color: var(--navyBlue);
    align-items: flex-start;
  }

  .mobile__tab__buttons {
    width: 100%;
  }

  .mobile__tab__buttons button {
    width: 100%;
  }

  .show__nav {
    font-size: 14px;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
    visibility: visible;
    z-index: 9999;
  }

  .show__overlay {
    position: fixed;
    visibility: visible;
    transition: all 0.2s ease;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
  }

  .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: white;
    display: block;
    cursor: pointer;
  }

  .close__btn {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .close__btn .bar:nth-child(2) {
    opacity: 0;
  }

  .close__btn .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .close__btn .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .content__style {
    flex-direction: column-reverse;
  }

  .everything__layout {
    flex-direction: column;
  }

  .monitor__image {
    width: 100%;
    border-radius: 10px;
    height: 500px;
  }
}

@media screen and (max-width: 600px) {
  h2,
  h1 {
    font-size: 36px;
    line-height: 50px;
  }
  .article__style h2 {
    font-size: 36px;
  }

  .take__it__grid__card {
    max-height: 100%;
    min-width: auto;
  }

  .truncate {
    /* overflow: auto;
    text-overflow: initial;
    display: -webkit-box;
    -webkit-line-clamp: 100; 
    line-clamp: 100;
    -webkit-box-orient: vertical; */
  }

  .take__it__grid {
    height: ;
  }

  .header__underlined {
    top: 60%;
  }

  .header__underlined__leading {
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .monitor__image {
    height: 300px;
  }

  .banner::after {
    background-image: url("/assets/images/bitcoinMobile.png");
    background-position: right;
    padding-left: 50px;
  }
}
