/* TODO: refactor to a single css file per page */
/* ------------------------------------
  BUY CRYPTOCURRENCIES PAGE NEW STYLES 
--------------------------------------- */
.buy-cryptocurrencies-heading {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 450px;
}

.buy-cryptocurrencies.why-section-container {
  gap: 80px;
  padding: 60px 0 60px 40px;
}

.buy-cryptocurrencies-feature-card img {
  width: 70px;
  margin-bottom: 20px;
}

.buy-cryptocurrencies-feature-card .heading {
  margin-bottom: 40px;
}

.main-cryptocurrencies-section {
  width: 60%;
  margin: auto;
}

.main-cryptocurrencies-card img {
  margin-bottom: 20px;
}

.main-cryptocurrencies-card a {
  text-decoration: none;
}

.what-are-cryptocurrencies-section .what-are-cryptocurrencies-content a {
  text-decoration: none;
}

.what-are-cryptocurrencies-section .what-are-cryptocurrencies-content a .description,
.what-are-cryptocurrencies-section .what-are-cryptocurrencies-content a .title {
  margin: 20px 0;
}

.what-are-cryptocurrencies-section .what-are-cryptocurrencies-content img {
  width: 80%;
  margin: 40px auto;
}

@media (max-width: 767px) {
  .buy-cryptocurrencies .wallet-features-first-section div {
    border-radius: 0;
  }
}

@media (max-width: 1023px) {
  .main-cryptocurrencies-section {
    width: 100%;
  }

  .main-cryptocurrencies-card img {
    width: 50px;
  }

  .buy-cryptocurrencies.why-section-container {
    padding: 60px 40px;
    text-align: center;
  }

  .buy-cryptocurrencies.why-section-container .why-image {
    width: 100%;
    height: auto;
  }

  .what-are-cryptocurrencies-section .what-are-cryptocurrencies-content {
    text-align: center;
  }

  .what-are-cryptocurrencies-section .what-are-cryptocurrencies-content .heading,
  .what-are-cryptocurrencies-section .what-are-cryptocurrencies-content .title {
    text-align: center;
  }

  .what-are-cryptocurrencies-section .what-are-cryptocurrencies-image img {
    width: 300px;
  }

  .buy-cryptocurrencies-feature-card img {
    width: 50px;
  }

  .buy-cryptocurrencies .wallet-features-first-section .wallet-features-mockup-column {
    height: 350px;
    justify-content: flex-start;
  }

  .buy-cryptocurrencies .wallet-features-first-section .wallet-features-column {
    padding: 220px 20px 50px;
  }

  .buy-cryptocurrencies .wallet-features-first-section .wallet-features-mockup-column .title,
  .buy-cryptocurrencies .wallet-features-first-section .wallet-features-mockup-column img {
    position: relative;
    top: 0;
  }

  .buy-cryptocurrencies .wallet-features-first-section .wallet-features-mockup-column .title {
    margin: 50px 0 0;
  }
}

/* ------------------------
  CRYPTOS PAGE NEW STYLES  
--------------------------- */

/* Crypto page styles - sections */
.cryptos-main-layout {
  display: grid;
  gap: 5rem;
}

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

@media (max-width: 1024px) {
  .heading-container a.cta {
    display: none;
  }
}

@media (min-width: 1024px) {
  .crypto-converter-container a.cta {
    display: none;
  }
}

/* Crypto page styles - sections */
.cryptos-main-layout {
  display: grid;
  gap: 5rem;
}

.price-chart-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

@media only screen and (max-width: 1024px) {
  .price-chart-layout {
    grid-template-columns: 1fr;
  }
}

.crypto-heading-background {
  background: #1a24ff;
  padding: 170px 0 50px;
}

.crypto-heading-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media only screen and (min-width: 1024px) {
  .crypto-heading-layout {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.crypto-heading-layout.container:before,
.crypto-heading-layout.container:after {
  content: none;
}

.crypto-converter-container {
  background-color: #fff;
  border-radius: 25px;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  display: grid;
  gap: 1rem;
  margin: auto;
  padding: 30px 45px;
  width: 100%;
  height: 100%;
}

.crypto-converter-container .title {
  font-size: 2.25rem;
}

.crypto-converter-container .description {
  font-size: 1.9rem;
}

.crypto-converter-container .icon {
  text-align: center;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1024px) {
  .crypto-converter-container  {
    padding: 30px 20px;
    gap: 2rem;
  }

  .crypto-converter-container .title {
    font-size: 2rem;
  }
  
  .crypto-converter-container .description {
    font-size: 1.75rem;
  }
}

.heading-container {
  margin: auto;
  text-align: left;
}

@media only screen and (max-width: 1023px) {
  .heading-container {
    text-align: center;
  }
}

.currency-amount-input-container {
  border: 1px solid #979797;
  border-radius: 20px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
}

.currency-amount-input-container label {
  font-size: 1.75rem;
}

.currency-label-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 10px;
}

.currency-label {
  display: flex;
  align-items: center;
}

.currency-label p {
  font-size: 2.25rem;
  text-shadow: 1px 0 0 #000;
  margin: 0;
  margin-left: 10px;
}

.currency-amount-input {
  display: flex;
  flex-direction: column;
}

.amount-input,
.amount-input:focus {
  border: 0;
  box-shadow: unset;
  color: #343434;
  font-size: 3rem;
  text-align: right;
  text-shadow: 1px 0 0 #343434;
  padding: 0;
}

.amount-input::placeholder {
  color: #888;
  text-shadow: 1px 0 0 #888;
}

.amount-input[name="from_currency_amount"],
.amount-input[name="from_currency_amount"]:focus {
  color: #1a24ff;
  text-shadow: 1px 0 0 #1a24ff;
}

.price-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.price-container .description {
  line-height: 1.5;
  text-shadow: 1px 0 0 #343434;
  margin-bottom: 0;
  width: 100%;
}

.price-text {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: 'montserrat';
  line-height: 1;
}

.price-change-text {
  font-size: 2.5rem;
  line-height: 1;
}

.price-change-text.red {
  color: #d41a21;
  text-shadow: 1.5px 0 0 #d41a21;
}

.price-change-text.green {
  color: #35b46e;
  text-shadow: 1.5px 0 0 #35b46e;
}

.price-change-container {
  display: flex;
  align-items: center;
}

.price-change-container > * {
  margin-right: 20px;
}

.price-change-icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0px 2px;
  width: 15px;
  height: 15px;
}

.price-change-icon.red {
  background-image: url('../img/red-triangle.svg');
}

.price-change-icon.green {
  background-image: url('../img/green-triangle.svg');
}

.price-badge {
  font-size: 2rem;
  margin-left: 10px;
  border-radius: 7px;
}

.price-badge.red {
  background-color: #d41a21 !important;
  background: #d41a21 !important;
}

.price-badge.green {
  background-color: #35b46e !important;
  background: #35b46e !important;
}

@media only screen and (max-width: 1024px) {
  .price-text {
    font-size: 1.9rem;
  }
  .price-change-text {
    font-size: 2rem;
  }
}

.canvas-chart-box .title,
.canvas-chart .title {
  font-size: 2.25rem;
}

.canvas-chart-box .description,
.canvas-chart .description {
  font-size: 1.9rem;
  color: #000;
}

.canvas-chart-box .price-container,
.canvas-chart .price-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.canvas-chart-box .price-container .description,
.canvas-chart .price-container .description {
  text-shadow: 1px 0 0 #000;
}

.canvas-chart-box .price-text,
.canvas-chart .price-text {
  color: #000;
  font-size: 3rem;
  font-family: 'Questrial';
  line-height: 1;
  text-shadow: 1px 0 0 #000;
}

@media only screen and (max-width: 1024px) {
  .canvas-chart-box .price-container,
  .canvas-chart .price-container  {
    grid-template-columns: 1fr;
  }

  .canvas-chart-box .price-text,
  .canvas-chart .price-text {
    font-size: 2.4rem;
  }
}

.chart-timeframes-container {
  text-align: center;
}

.timeframe-button {
  background: #fff;
  border: 1px solid #979797;
  border-radius: 7px;
  color: #979797;
  padding: 4px 8px;
  min-width: 40px;
  margin-right: 5px;
}

.period-button.btn {
  background: #fff;
  color: #000;
  margin-right: 10px;
}

.period-button.btn:hover,
.period-button.btn:active,
.period-button.btn:focus,
.period-button.btn:focus-visible {
  background-color: #e8e8e8;
  border: none;
  outline: none;
}

.period-button.btn.active,
.period-button.btn.active:active {
  color: #fff;
  background: #1a24ff;
}

/* Crypto page styles - why buy crypto section */
.why-section-container {
  background: #f6f8ff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 40px;

}

.why-section-container .description {
  margin-bottom: 20px;
}

.why-button {
  background: #ffffff00;
  border: 2px solid #1a24ff;
  border-radius: 50px;
  color: #1a24ff;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 1px 0 0 #1a24ff;
  padding: 10px 30px;
}

.why-image {
  margin: auto;
}

@media only screen and (max-width: 1024px) {
  .why-section-container  {
    grid-template-columns: 1fr;
    border-radius: 0;
    padding: 60px 25px;
  }

  .why-button {
    font-size: 1.9rem;
  }

  .why-section-container.what-is-section {
    display: flex;
    flex-direction: column-reverse;
    border-radius: 0;
  }

  .why-image {
    position: absolute;
    bottom: 55px;
    right: 25px;
    width: 70px;
    height: 70px;
  }

  .what-is-section .why-image {
    position: relative;
    width: 200px;
    height: 200px;
    bottom: unset;
    right: unset;
    margin-bottom: 50px;
  }
}

#cryptomkt-section {
  padding: 5rem 0;
}

#cryptomkt-section .cryptomkt-promo-image {
  width: 600px;
}

@media only screen and (max-width: 1024px) {
  #cryptomkt-section .cryptomkt-promo-image {
    width: 100%;
  }
}

/* Crypto page styles - trending section */
.trending-cryptos-section-layout {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  margin: 60px auto;
}

.trending-cryptos-section-layout.container:after,
.trending-cryptos-section-layout.container:before {
  content: unset;
}

@media only screen and (max-width: 1024px) {
  .trending-cryptos-section-layout  {
    grid-template-columns: repeat(1, 1fr);
    margin: 40px auto;
  }
}

.trending-cryptos-loader {
  grid-column: 3 / 3;
}

.trending-cryptos-title {
  text-align: center;
}

.trending-crypto-container {
  border-radius: 15px;
  box-shadow: 0px 4px 8px 0px rgb(0 0 0 / 20%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px 10px;
}

.trending-section-container .trending-cta {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .trending-section-container {
    border-radius: 20px;
    box-shadow: 0px 4px 8px 0px rgb(0 0 0 / 20%);
    padding: 30px 10px;
  }

  .trending-crypto-container  {
    grid-template-columns: 1fr 1fr;
    border-radius: 0;
    box-shadow: none;
    padding: 5px;
  }

  .trending-crypto-price-container {
    text-align: right;
  }

  .trending-section-container .trending-cta {
    display: inline;
    text-decoration: none;
  }
}

.trending-crypto-link,
.trending-crypto-link:hover {
  text-decoration: none;
  color: #343434;
}

.trending-crypto-heading-container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 10px;
  align-items: center;
}

.trending-crypto-name-container {
  display: flex;
  flex-direction: column;
}

.trending-crypto-name {
  font-size: 2rem;
  color: #343434;
  text-shadow: 1px 0px 0px #343434;
  line-height: 1;
  margin: 0;
  margin-bottom: 5px;
}

.trending-crypto-code {
  font-size: 1.75rem;
  color: #343434;
  line-height: 1;
  margin: 0;
}

.trending-crypto-price-change {
  font-size: 1.75rem;
  color: #343434;
  text-shadow: 1px 0px 0px #343434;
  margin: 0;
}

.trending-crypto-price-change.red {
  color: #d41a21;
  text-shadow: 1px 0px 0px #d41a21;
}

.trending-crypto-price-change.green {
  color: #35b46e;
  text-shadow: 1px 0px 0px #35b46e;
}

.trending-crypto-price {
  font-size: 2.15rem;
  color: #343434;
  text-shadow: 1px 0px 0px #343434;
  line-height: 1.5;
  margin: 0;
}

@media only screen and (max-width: 390px) {
  .trending-crypto-name {
    font-size: 1.75rem;
  }
  
  .trending-crypto-code {
    font-size: 1.5rem;
  }

  .trending-crypto-price-change {
    font-size: 1.5rem;
  }

  .trending-crypto-price {
    font-size: 2rem;
  }
}

/* New buy crypto pages styles */
.cont-princ-term.buy-crypto-page {
  background-color: #1a24ff;
}

/* Heading section */
.cryptos-main-layout .buy-crypto-heading {
  background-color: #1a24ff;
  padding: 60px 0;
  height: 100%;
}

.buy-crypto-heading .button-cta {
  margin-top: 30px;
}

.buy-steps-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.buy-steps-layout > div:first-child > .subtitle {
  display: none;
}

.buy-step-container {
  display: flex;
  align-items: center;
  margin: 3rem;
}

.buy-step-content {
  text-align: left;
  margin-left: 20px;
}

.buy-step-content .subtitle {
  font-size: 2.25rem;
  text-shadow: 1px 0 0 #333;
  margin: 0;
}

.buy-step-content .description {
  font-size: 2rem;
}

.buy-steps-layout a.cta {
  margin-left: 100px;
}

.chart-layout {
  background: #1a24ff;
}

#price-container.chart-layout {
  padding-top: 40px;
  min-height: 400px;
  position: relative;
  margin-bottom: 350px;
}

#price-container.chart-layout > div:first-child {
  width: 60%;
  margin: auto;
}

#price-container.chart-layout > div:last-child {
  position: absolute;
  padding: 40px;
  margin-top: 40px;
  right: 0;
  left: 0;
}

.price-chart-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.2);
}

#price-container .canvas-chart {
  padding-right: 40px;
}

#price-container .canvas-chart .price-container {
  margin-top: 0;
}


.global-data-coin {
  border-left: 2px solid #ededed;
  padding-left: 40px;
}

.global-data-coin .description {
  font-size: 1.9rem;
  text-shadow: 1px 0 0 #000;
}

.variation-list {
  width: 80%;
  margin: auto;
}

.variation-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-bottom: 2px solid #ededed;
}

.variation-container:last-child {
  border-bottom: 2px solid #343434;
}

.cta-inter-page {
  margin-top: 40px;
}

.reasons-list-container {
  height: 100%;
  margin: 10vh 0;
  padding: 0 10vw;
}

.reasons-list-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.reasons-list-container .heading {
  margin-bottom: 10vh;
}

.reason-container {
  background: #2d42f8;
  background-color: #2d42f8;
  border: 1px solid #fff;
  border-radius: 15px;
  padding: 20px;
  color: #fff;
}

.list-number {
  border: 1px solid #fff;
  display: inline-block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 3rem;
  text-align: center;
  line-height: 1.5;
}

@media only screen and (max-width: 1023px) {
  .buy-steps-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .buy-steps-layout > div:first-child > img {
    display: none;
  }

  .buy-steps-layout > div:first-child > .subtitle {
    display: block;
    font-size: 2.25rem;
    text-shadow: 1px 0 0 #000;
  }

  .buy-step-container {
    flex-direction: column;
  }
  
  .buy-step-content {
    margin-left: 0;
    margin-top: 20px;
    text-align: center;
  }

  .buy-steps-layout a.cta {
    margin: 65px;
  }

  #price-container.chart-layout {
    margin-bottom: 600px;
  }

  #price-container.chart-layout > div:first-child {
    width: 80%;
    margin: auto;
  }

  #price-container.chart-layout > div:last-child {
    padding: 20px;
    margin: 20px auto;
  }

  #price-container .canvas-chart {
    padding-right: 0;
  }

  .row.canvas-chart {
    padding: 0 !important;
  }

  .global-data-coin {
    border-left: 0;
    padding: 0;
  }

  .global-data-coin .price.description {
    display: none;
  }

  .global-data-coin .variation-list {
    width: 100%;
  }

  .global-data-coin .variation-container {
    border-bottom: 1px solid #ccc;
  }

  .price-chart-container {
    grid-template-columns: 1fr;
  }

  .reasons-list-layout {
    grid-template-columns: 1fr;
  }

  .reasons-list-container {
    padding: 0 5vw;
  }

  .reasons-list-container .heading {
    width: 65%;
    margin: auto;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 600px) {
  #price-container.chart-layout {
    margin-bottom: 500px;
  }
}

/* Into the block */
@media only screen and (min-width: 1024px) {
  .into-the-block-section {
    margin: 5rem auto;
  }
}
/* ---------------------------------
  BITCOIN TO DOLLAR PAGE NEW STYLES 
------------------------------------ */

.crypto-to-dollar-heading {
  background-color: #1a24ff;
  padding: 60px 0 30rem;
  margin-bottom: 450px;
}

.crypto-to-dollar-chart-converter {
  position: absolute;
  top: 5%;
  right: 0;
  left: 0;
}

.gray-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  border: 2px solid #efefef;
  height: 100%;
  padding: 20px;
}

.gray-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.bitcoin-reserve-heading {
  width: 95%;
  margin: auto;
  text-align: center;
}

.questions-section .questions-title-section {
  border-top: 1px solid #979797;
  border-bottom: 1px solid #979797;
  padding: 5rem;
}

.questions-section .questions-title-section .title {
  margin: 0;
}

.questions-section .question-card {
  border-bottom: 1px solid #979797;
  padding: 5rem;
}

.questions-section .question-card:nth-child(2n + 2) {
  border-left: 1px solid #979797;
}

@media only screen and (max-width: 767px) {
  .questions-section .question-card:nth-child(2n + 2) {
    border-left: 0px;
  }
}

@media only screen and (max-width: 1023px) {
  .crypto-to-dollar-heading {
    margin-bottom: 980px;
  }

  .crypto-to-dollar-chart-converter {
    display: flex;
    flex-direction: column-reverse;
    top: 3.5%;
  }

  .bitcoin-reserve-heading {
    text-align: left;
  }
}

/* -----------------------
  SUPPORT PAGE NEW STYLES 
-------------------------- */

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

.support-main-layout .support-section-one {
  padding-top: 80px;
}

.support-main-layout section.learn {
  padding-bottom: 80px;
}

.support-main-layout section.tubtc-banner {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media only screen and (max-width: 1023px) {
  .support-main-layout section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.support-heading-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.support-cover {
  height: 400px;
  background: url("../img/support-cover.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.support-topic-card-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.support-topic-card-list a {
  text-decoration: unset;
  flex-basis: 30%;
  margin: 2% 1.5%;
}

.support-topic-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 300px;
  max-width: 350px;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid transparent;
}

.support-topic-card:hover {
  border: 2px solid #1a24ff;
}

.support-topic-card img {
  width: 60px;
  margin-bottom: 20px;
}

.support-topic-card-list a:first-child .support-topic-card img {
  width: 70px;
}

@media only screen and (max-width: 1023px) {
  .support-cover {
    height: 320px;
  }

  .support-topic-card-list a {
    flex-basis: 46%;
    margin: 4% 1.5%;
  }

  .support-topic-card img {
    width: 60px;
  }

  .support-topic-card-list a:first-child .support-topic-card img {
    width: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .support-topic-card {
    height: 230px;
    max-width: unset;
    padding: 20px;
    border: 0;
  }

  .support-topic-card:hover {
    border: 0;
  }

  .support-topic-card img {
    width: 50px;
  }

  .support-topic-card-list a:first-child .support-topic-card img {
    width: 60px;
  }

  .support-topic-card .title {
    font-size: 1.6rem;
  } 
}

.support-articles-title {
  border-top: 2px solid #e2e2e2;
  border-bottom: 2px solid #e2e2e2;
  padding: 40px 0;
}

.support-articles-title h2 {
  margin: 0;
}

.support-articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.support-articles-grid .support-article-item {
  border-bottom: 2px solid #e2e2e2;
  display: flex;
  align-items: center;
  padding: 30px 40px 30px 0;
}

.support-articles-grid .support-article-item:nth-child(2n + 2) {
  border-left: 2px solid #e2e2e2;
  padding-left: 30px;
}

.support-articles-grid .support-article-item .title {
  margin: 0;
  padding-right: 50px;
}

.support-articles-grid .support-article-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  width: 100%;
}

.support-articles-grid .support-article-item i.fa {
  color: #1a24ff;
}

@media only screen and (max-width: 767px) {
  .support-articles-grid {
    grid-template-columns: 1fr;
  }

  .support-articles-grid .support-article-item {
    padding: 30px 10px 30px 0;
  }
  
  .support-articles-grid .support-article-item:nth-child(2n + 2) {
    border-left: 0;
    padding-left: 0;
  }

  .support-articles-grid .support-article-item .title {
    font-size: 2rem;
    padding-right: 40px;
  }
}

.learn-more-title {
  margin-bottom: 80px;
}

.learn-more-card-item {
  padding: 50px;
}

.learn-more-card-item img {
  width: 60px;
  margin-bottom: 20px;
}

.learn-more-card-item button i.fa {
  vertical-align: 0;
  margin-left: 10px;
}

@media only screen and (min-width: 767px) {
  .learn-more-card-item {
    position: relative;
    width: 150%;
    left: -25%;
  }
}

@media only screen and (max-width: 1023px) {
  .learn-more-title {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .learn-more-card-item {
    padding: 40px;
    width: 100%;
  }

  .learn-more-card-item .title {
    font-size: 2rem;
  }
}

/* ----------------------
  WALLET PAGE NEW STYLES
------------------------- */

.wallet-main-layout section {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media only screen and (max-width: 1023px) {
  .wallet-main-layout section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

section.wallet-section-heading {
  background-color: #1a24ff;
  padding: 140px 0 40px 0;
  height: 100%;
}

section.wallet-section-one {
  padding-bottom: 0;
}

.multi-wallet-section > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 25px;
}

.multi-wallet-section > div:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

.multi-wallet-section .description {
  margin-bottom: 20px;
  line-height: 1;
}

.multi-wallet-section img {
  width: 350px;
}

.wallet-features-mockup-column {
  background-color: #1a24ff;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wallet-features-mockup-column img {
  width: 500px;
}

.wallet-features-column {
  background-color: #f6f8ff;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 60px;
}

.wallet-features-first-section .wallet-features-list .description {
  line-height: 1;
}

.wallet-features-first-section .wallet-features-list .wallet-feature-item {
  display: flex;
  margin: 20px 0;
}

.wallet-features-first-section .wallet-features-list .wallet-feature-item i.fa {
  color: #1a24ff;
}

.wallet-features-first-section .wallet-features-list .wallet-feature-item .description {
  padding: 0 10px 0 40px;
  line-height: 1;
}

.wallet-features-second-section {
  background: #f5f5f5;
  padding: 100px 0;
}

.wallet-features-second-section .wallet-features-heading .description {
  margin-bottom: 40px;
  line-height: 1;
}

.wallet-features-second-section .wallet-features-grid .wallet-feature-card {
  background: #fff;
  padding: 40px 20px;
}

.wallet-features-second-section .wallet-features-grid .wallet-feature-card img {
  width: 70px;
  margin-bottom: 20px;
}

.wallet-features-second-section .wallet-features-grid .wallet-feature-card .description {
  line-height: 1;
}

.wallet-ending-section .description {
  margin-bottom: 20px;
  line-height: 1;
}

@media only screen and (max-width: 1023px) {
  .wallet-heading {
    padding: 100px 0 60px 0;
  }
  .multi-wallet-section > div:first-child {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
  }

  .multi-wallet-section > div:last-child {
    order: -1;
  }

  .multi-wallet-section img {
    width: 200px;
  }

  .wallet-features-mockup-column {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .wallet-features-mockup-column img {
    width: 300px;
  }

  .wallet-features-column {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 25px;
  }

  .wallet-features-first-section .wallet-features-list .wallet-feature-item .description {
    padding: 0 0 0 30px;
  }
}
