/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
.logo {
  width: 175px;
}

* {
  scroll-behavior: smooth;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #080A0B;
  color: #FFFFFFFF;
  height: 100%;
  justify-content: center;
}

a {
  color: inherit;
  text-decoration: none;
}

input, button {
  box-sizing: border-box;
}

.wrapper-new {
  width: 1216px;
  margin: 0 auto;
  display: flex;
}

.row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

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

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

.row-reverse {
  flex-direction: row-reverse;
}

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

.greenTitle {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.2;
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(to right, #ffffff, #C0FD04, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.greyTitle {
  font-size: 52px;
  font-weight: 500;
  text-align: center;
  line-height: 120%;
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(to bottom, #ffffff, #888888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  white-space: pre-line;
}

/* header */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 20px;
}

.nav-links, .nav-linksBig {
    list-style-type: none;
    list-style-position: inside;
    display: flex;
    justify-items: right;
    font-family: 'Open Sans', sans-serif;
    position: relative;
}


.nav-links > li, .nav-linksBig > li {
    margin-right: 20px;    
}

.nav-links > li > a, .nav-linksBig > li > a {
  font-size: 16px;
  color: #FFFFFF;
}

.menu-header {
  width: 100%;
}

.nav-links > li:last-child, .nav-linksBig > li:last-child {
    margin-right: 0;
}

.nav-links-a > li {
    margin-right: 20px;    
}

.nav-links-a > li > a {
  font-size: 16px;
  color: #FFFFFF;
}

.nav-links-a > li:last-child {
    margin-right: 0;
}

.nav-links > li > a:hover {
  color: #ccc;
}

.nav-links {
  position: fixed;
  top: 0;
  right: 0;
  background: #0a0a0f;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  display: none;
  z-index: 999;
}

.nav-links.active {
  display: flex;
}


/* Бургер */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.burger span {
  height: 3px;
  background: white;
  border-radius: 2px;
}



/* Intro */

.intro {
  padding: 32px 0 51px;
}

.gradient-block {
  background: linear-gradient(135deg, #0E1011, #1C1E1F, #0E1011 );
  border-radius: 20px;
  padding: 104px 104px 0;
  margin-bottom: 32px;
  width: inherit;
}

.gradient-textBlock {
  width: 40%;
}

.gradient-text {
  font-size: 50px;
  font-weight: 500;
  line-height: 120%;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #ffffff, #888888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  white-space: pre-line;
  margin-bottom: 64px;
}

.greenbutton {
  border-radius: 10px;
  background-color: #C0FD04;
  padding: 15px 30px;
  color: black;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400px;
  font-size: 16px;
}

.greenbutton:hover {
  cursor: pointer;
}

.feature-card {
  background-color: #161819;
  border-radius: 16px;
  padding: 30px 20px;
  width: 29%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.featureText {
  width: 70%;
}

.icon {
  width: 25%;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon > img {
  width: 100%;
  height: auto;
}

.featureText-title {
  color: #ffffff;
  font-size: 23px;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}

.featureText-description {
  color: #bbbbbb;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
}

.gradient-image {
  width: 50%;
}

.gradient-image > img {
  width: 100%;
  height: auto;
}

/* Opportunities */

.img-shape {
  position: relative;
  width: 40%;
  height: auto;
  z-index: 1;
}

.img-shape::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 253, 4, 0.3) 0%, rgba(192, 253, 4, 0) 40%);
  z-index: 2;
  pointer-events: none;
}

.img-shape > img {
  width: 100%;
  height: auto;
}

.opportunities-row {
  position: relative;
}

.opportunities-row::after {
  content: "";
  position: absolute;
  top: 0%;
  right: 50%; /* or use left: 0 for left side */
  width: 1px;
  height: 200%;
  background-image: url('./img/line-vertical.svg'); /* your image URL */
  transform: rotate(90deg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5; /* optional: transparency */
  z-index: -1; /* behind content */
}

.opportunities-row::before {
  content: "";
  position: absolute;
  top: 0%;
  right: 50%; /* or use left: 0 for left side */
  width: 1px;
  height: 200%;
  background-image: url('./img/line-vertical.svg'); /* your image URL */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5; /* optional: transparency */
  z-index: -1; /* behind content */
}

.left-text {
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    font-size: 24px;   
}


.left-block {
    width: 40%;
    margin-left: 0;
}

/* Investment */

.investment {
  padding-top: 128px;
}

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

.investment-title {
  text-align: center;
  margin-bottom: 32px;
}

.investment-subtitle {
  text-align: center;
  margin-bottom: 64px;
  width: 50%;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 1.4;
}

.investment-card {
  flex-direction: column; 
  border: 2px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, #0F1112, #101213);
  border-radius: 16px;
  padding: 30px;
  width: 27%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}

.investment-card-green {
    background: #CEFF24;
    padding-bottom: 0;
}

.investment-cardText-green {
    color: #000 !important;
}


.investment-cardTitle {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #A8A8A8;
}

.investment-cardText {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #FFFFFF;
  margin-bottom: 88px;
  width: 95%;
}

.investment-card:hover {
  transform: translateY(-5px);
}

.investment-cardImage > img {
  width: 100%;
  height: auto;
}

/* Audit and compliance */

.auditCompliance {
  padding: 128px 0 128px;
}

.auditCompliance-column {
  display: flex;
  align-items: center;
}

.auditCompliance-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}

.auditCompliance-title {
  text-align: center;
  margin-bottom: 32px;
}

.auditCompliance-description {
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
  line-height: 1.4;
}

/* Account Type */

.accountType {
  padding-bottom: 128px;
}

.accountType-title {
  margin-bottom: 32px;
}

.accountType-card {
  border-radius: 10px;
  padding: 30px;
  width: 27%;
  position: relative;
  align-items: flex-end;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  background: linear-gradient(145deg, #1E1E20, #252728);
  height: fit-content;
}

.accountType-cardPopular {
  background: linear-gradient(145deg, #262C23, #0D0D0D);
  border: 2px solid #d4ff00;
}

.accountType-card:hover {
  transform: translateY(-10px);
}

.accountType-cardRow {
  margin-bottom: 10px;
}

.accountType-cardTitle {
  color: #ccc;
  font-family: 'Inter', sans-serif;
  font-weight: normal;
}

.accountType-tagPopular {
  color: #d4ff00;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  padding: 4px 10px;
  border-radius: 10px;
  font-weight: 500;
  border: 1px solid #d4ff00;
}

.accountType-cardPrice {
  font-family: 'DM-Sans', sans-serif;
  font-weight: 900;
  font-size: 36px;
  margin-bottom: 12px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.pricing-card ul li {
  margin: 8px 0;
  color: white;
}

.accountType-cardBtn {
  display: flex;
  background-color: white;
  padding: 10px 20px;
  border-radius: 10px;
  align-items: flex-end;
  border: none;
  font-weight: 500;
  cursor: pointer;
  color: black;
  width: fit-content;
  margin-bottom: 64px;
}

.accountType-cardBtnPopular {
  background-color: #d4ff00;
  color: black;
}

.accountType-cardOptions {
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 12px;
  margin-left: 36px;
  position: relative;
}

.accountType-cardOptions::before {
  content: url('./img/accountType/check.svg');
  position: absolute;
  left: -36px;
}

.accountType-cardOptions:last-child {
  margin-bottom: 0;
}


.contacts {
  padding: 128px 0 192px;
}

.contacts-column {
  display: flex;
  align-items: center;
}

.contacts-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.contacts-title {
  text-align: center;
  margin-bottom: 32px;
}

.contacts-description {
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.4;
}

.contacts-form {
  width: 80%;
  align-items: center;
}

.contacts-form > input, .contacts-form > select {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  background-color: #FFFFFF33;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
  border: none;
}

.contacts-form > button {
  width: 100%;
  padding: 15px 30px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  background-color: #CEFF24;
}

/* Footer */

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-copy {
  color: #FFFFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

.footer-socials a {
  color: #FFFFFFFF;
  font-family: 'DM Sans', sans-serif;
  margin-right: 20px;
  font-size: 18px;
}

.footer-socials a:last-child {
  margin-right: 0;
}

.footer-socials a:hover {
  color: #ccc;
}


/*  */

.four-block-mobile {
  display: none;
  background: none;
  border: none;
}

.markets__table {
    border-radius: 12px;
    width: inherit;
    max-width: 1200px;
    margin: auto;
    border: 2px solid #3D3D3D;
    background-image: url('./img/markets-bg.svg');
    background-size: cover;      
    background-position: center; 
    background-repeat: no-repeat; 
}

.markets__table p {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.markets__header {
    display: flex;
    align-items: left;
    font-size: 22px;
    color: white;
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 500;
   margin-left: 24px;
    margin-top: 24px;
    margin-bottom: 10px;
    width: 100%;
}

.markets__col-title {
  width: 200px;
}

.hr{
    height: 1px;
    width: 100%;
    opacity: 0.6;
}

.tradeViewTitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 54px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    width: 100%;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.tradeView {
    display: flex;
    padding: 0;
}

.tradeView-title {
    margin-bottom: 32px;
}

.markets__col-value{
    width: 100px;
    font-size: 20px;
    color: white;
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400;
}
.markets__asset{
    display: flex;
    align-items: center;
    gap: 8px;
}
.markets__col-value--positive{
    display: flex;
    align-items: left;
    justify-content: left;
    padding: 10px;
    background-color: #16C784;
    border-radius: 8px;
    width: 100px;
}

.markets__col-value--negative{
    display: flex;
    align-items: left;
    justify-content: left;
    padding: 10px;
    background-color: #EA3943;
    border-radius: 8px;
    width: 100px;
}


.markets__col-title--change{
  align-items: left;
  padding: auto;
}

.markets__col-graf-positive,
.markets__col-graf-negative {
  display: none;
}

.markets__row{
  font-family: "Inter Tight";
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 24px;
    margin-top: 10px;
    margin-right: 24px;
}

.markets__row:last-child{
    margin-bottom: 24px;
}

.markets__col-icon {
  width: 150px;
}

.markets__row-bg{
  font-family: "Inter Tight";
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 24px;
    margin-top: 10px;
    margin-right: 24px;
}
.markets__row--border{
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.markets__title{
font-family: 'Unbounded';
font-style: normal;
font-weight: 300;
font-size: 63px;
line-height: 120%;
text-align: center;

background: linear-gradient(90deg, #83DEFF 0%, #FF4319 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
margin: auto;
margin-top: 94px;
margin-bottom: 48px;

}
.markets__col-graf{
  background:'./img/graf.svg';
}
.markets__mobile-value--positive{
        display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #2DBD85;
    color: #2DBD85;
    border-radius: 8px;
    width: 110px;
}

.markets__mobile-value--negative{
        display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #D33536;
    color: #D33536;
    border-radius: 8px;
    width: 110px;
}
.markets__mobile{
    display: none;
}
.wrapper-markets {
    width: 100%;
    margin: 0 auto;
    display: flex;
}


section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

button {
  transition: opacity 0.3s ease;
}

button:hover {
  opacity: 0.9;
}


.markets__mobile-table-bg{
    width: 327px;
    color: white;
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #212121;
    padding: 24px;
}

.markets__mobile{
    display: none;
}



.markets__mobile-table{
    width: 327px;
    color: white;
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400;
    display: none;
    flex-direction: column;
    gap: 24px;
    background: #1B1B1B;
    padding: 24px;
}
.markets__mobile-row{
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

.markets__mobile-label{
    width: 90px;
    color: #B7B7B7;
}
.markets__mobile-asset{
    display: flex;
    align-items: center;
    gap: 8px;
}
.markets__mobile-value--positive{
        display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #2DBD85;
    color: #2DBD85;
    border-radius: 8px;
    width: 110px;
}

.markets__mobile-value--negative{
        display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #D33536;
    color: #D33536;
    border-radius: 8px;
    width: 110px;
}

.markets__mobile p {
  font-family: 'Inter', sans-serif;
}


.close-btn {
  font-size: 32px;
  color: white;
  cursor: pointer;
}


@media (min-width: 320px) and (max-width: 767px) {
  body {
    margin: 0 auto;
    background-color: #0E0E0E;
    background-image: url('./img/bg-mobile.svg'); /* Replace with your image path */
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: top; 
}

.nav-links{
    display: none;
}

  .nav-linksBig {
    display: none;
  }

.markets__table {
    display: none;
}

.markets__mobile-table-bg{
  display: block;
}

.markets__mobile-table{
  display: block;
}
.markets__mobile{
    display: block;
    align-items: center;
    justify-content: space-between;
    margin-left: 24px;
    margin-top: 10px;
    margin-right: 24px;
    
}
  .wrapper-new {
    width: 300px;
  }

  .secondTitle {
    font-size: 32px;
  }

  .markets__mobile-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    margin-bottom: 20px;
}

.markets__mobile-row:last-child {
    margin-bottom: 0;
}

    .markets__mobile-table-bg:nth-child(1) {
      border-radius: 20px 20px 0 0;
  }

   .markets__mobile-table-bg{
    padding: 20px;
   }

  .markets__mobile-table:last-child {
      border-radius: 0 0 20px 20px;
  }
  
  .nav-links {
    width: 100%;
    align-items: flex-start;
  }
  .nav-links li {
    width: 100%;
  }

  .burger {
    display: flex;
  }

  .gradient-block {
    padding: 21px 21px 0 21px;
  }
  .gradient-text {
    font-size: 44px;
    text-align: center;
    margin-bottom: 20px;
}

  .feature-card {
    display: flex;
    flex-direction: column; /* вертикальное расположение */
    align-items: flex-start;
    border-radius: 10px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    box-sizing: border-box;
  }

  .features-row {
    flex-direction: column;
    margin-top: 20px;
    padding: 5px;
  }

  .icon {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    border-radius: 50%;
    margin-bottom: 12px; /* отступ снизу от иконки до текста */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

.gradient-image{
  width: 100%;
  display: flex;
  justify-content: center;
}
  .gradient-textBlock {
    width: 100%;
    justify-items: center;
}

    .greenbutton {
        width: 100%;
        margin-bottom: 20px;
    }

    .featureText {
      width: 100%;
    }

    .featureText-title {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .left-block {
      width: 100%;
    }

    .greenTitle {
      font-size: 40px;
      margin-bottom: 20px;
    }

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

    .img-shape {
      width: 90%;
    }

    .opportunities-row::before {
      display: none;
    }

    .opportunities-row::after {
      display: none;
    }

    .img-shape::after {
      display: none;
    }

    .investment {
      padding-top: 64px;
    }

    .investment-subtitle {
      width: 100%;
    }

    .investment-card {
      width: 100%;
      margin-bottom: 20px;
    }

    .investment-card:last-child {
      margin-bottom: 0;
    }

    .auditCompliance {
      padding: 64px 0;
    }

    .auditCompliance-block {
      width: 100%;
    }

    .accountType-card {
      width: 100%;
      margin-bottom: 20px;
    }

    .accountType-card:last-child {
      margin-bottom: 0;
    }

    .accountType {
      padding-bottom: 64px;
    }

    .markets__mobile-table-bg, .markets__mobile-table {
      width: 280px;
    }

    .contacts {
      padding: 64px 0 96px;
    }

    .contacts-block {
      width: 100%;
    }

    .contacts-form {
      width: 100%;
    }

    .footer-row {
      display: flex;
      justify-content: center;
    }

    .footer-copy {
      margin-bottom: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .wrapper-new {
    width: 700px;
  }

  .gradient-block {
    padding: 52px 52px 0 52px;
  }

  .gradient-text {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .feature-card {
    width: 100%;
    margin-bottom: 20px;
  }

  .feature-card:last-child {
    margin-bottom: 0;
  }
  .greenTitle {
    font-size: 32px;
  }

  .left-text {
    font-size: 16px;
  }

  .img-shape {
    width: 50%;
  }

  .icon {
    width: 9%;
  }

  .investment-card {
    width: 32%;
  }

  .accountType-card {
    width: 32%;
    padding: 15px;
  }

  .contacts-block, .investment-subtitle, .auditCompliance-block {
    width: 70%;
  }

  .auditCompliance {
    padding: 64px 0;
  }

  .accountType {
    padding-bottom: 64px;
  }

  .markets__table p {
    font-size: 16px;
  }

  .markets__col-title {
    width: 100px;
  }

  .contacts {
    padding: 64px 0;
  }

    .burger {
    display: flex;
  }

  .nav-linksBig {
    display: none;
  }

  .nav-links {
    width: 92vw;
    align-items: flex-start;
  }
  .nav-links li {
    width: 100%;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .wrapper-new {
    width: 950px;
  }

  .gradient-text {
    font-size: 40px;
    margin-bottom: 30px;
  }

  .greenTitle {
    font-size: 40px;
  }

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

  .accountType-card {
    padding: 30px;
  }

  .investment-card {
    width: 32%;
  }

  .accountType-card {
    width: 32%;
    padding: 15px;
  }

}


@media (min-width: 1440px) {
  .wrapper-new {
    width: 1200px;
  }
}