*,
::before,
::after {
  box-sizing: border-box;
}

:where(ul, ol):where([class]) {
  padding-left: 0;
}

body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
button {
  font: inherit;
}

html {
  height: 100%;
  scrollbar-gutter: stable;
}

html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
}

a:where([class]) {
  display: inline-flex;
}

button,
label {
  cursor: pointer;
}

:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
}

:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.header{
    background-image: url(../assets/images/hero-bg.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
    
}

.container {
    max-width: 1200px;
    margin: auto;    
    position: relative;
}

.nav{
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.nav__menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.nav__item{
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: .3s ease-in-out;
}
.nav__item:hover{
    background-color: #363636;
}

.nav__item a{
    padding: 10px;
    color: white;
    font-family: "Inter Tight", sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
}
.logo{
    font-size: 24px;
    font-family: "Unbounded", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    color: white;
    margin-top: 40px;
}

.nav__register{
    width: 135px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    border-radius: 8px;
    color: black;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background-color: white;
    z-index: 1;
    transition: color 0.3s ease-in-out;
}
.nav__register::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(93.27deg, #84DCFD -6.79%, #FFFFFF 22.26%, #FFFFFF 80.38%, #EE5838 109.43%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

.nav__register:hover::before {
    opacity: 1;
}

.hero__title{
    background: linear-gradient(91.17deg, #83DEFF -4.01%, #EE5838 106.11%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 65px;
    font-family: "Unbounded", sans-serif;
    font-weight: 400;
    font-style: normal;
    max-width: 968px;
    text-transform: uppercase;
    margin: auto;
    margin-bottom: 48px;
    line-height: 105%;
    margin-top: 170px;
}
.hero__icon{
    color: white;
}
.hero__description{
    font-size: 20px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
    max-width: 336px;
    color: white;
}
.hero__cta{
    height: 56px;
    width: 336px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    background-color: white;
    color: black;
    border-radius: 8px;
    margin: auto;
    text-decoration: none;
    z-index: 1;
    transition: color 0.3s ease-in-out;
    font-family: "Inter Tight", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
}

.hero__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(93.27deg, #84DCFD -6.79%, #FFFFFF 22.26%, #FFFFFF 80.38%, #EE5838 109.43%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

.hero__cta:hover::before {
    opacity: 1;
}


.fade-up {
    opacity: 0;
    transform: translateY(90px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
    will-change: opacity, transform;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.3s; }
.fade-delay-3 { transition-delay: 0.4s; }
.fade-delay-4 { transition-delay: 0.6s; }
.fade-delay-5 { transition-delay: 0.6s; }


.burger-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    color: #fff;
    z-index: 3;
    text-align: center;
    background-color: #1B1B1B;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    pointer-events: none;
}

.burger-menu.show {
    transform: translateX(0);
    pointer-events: auto;
}

.burger-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 70px;
}

.burger-menu ul li {
    margin: 35px 0;
}

.burger-menu ul li a {
    color: black;
    font: 300 32px 'Montserrat';
}

.burger-icon {
    width: 69px;
    height: 40px;
    cursor: pointer;
    color: #fff;
    position: absolute;
    top: 37px;
    right: 10px;
    z-index: 3;
    border-radius: 20px;
    background: #1B1B1B;
    border: 1px solid #464646;
    display: none;
}

.burger-stick {
    width: 33px;
    height: 2px;
    margin: 2.5px auto 0;
    position: absolute;
    left: 0;
    right: 0;
    background-color: white;
    transition: 0.3s ease-in-out;
}

.burger-stick:nth-child(1) {
    top: 10px;
}

.burger-stick:nth-child(2) {
    top: 22px;
}

.burger-stick:nth-child(3) {
    top: 24px;
}

.burger-icon.active .burger-stick:nth-child(1) {
    transform: rotate(45deg);
    top: 16px;
}

.burger-icon.active .burger-stick:nth-child(2) {
    transform: rotate(-45deg);
    top: 16px;
}

.burger-icon.active .burger-stick:nth-child(3) {
    opacity: 0;
}

.no-scroll {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
body{
    background-color: #111111;
}
.about{
    margin-top: 160px;
}
.about__container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about__title{
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;

    background: linear-gradient(90deg, #83DEFF 0%, #FF4319 12.6%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.about__subtitle{
    font-family: 'Unbounded';
    font-style: normal;
    font-weight: 300;
    font-size: 61px;


    background: linear-gradient(90deg, #83DEFF 0%, #FF4319 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    line-height: 100%;
    margin-top: 40px;
    margin-bottom: 32px;
}

.about__text{
    color: white;
        font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
}

.about__content{
    width: 488px;
}
.card{
width: 591px;
height: 383px;

}
.card-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 72px;
}
.card-mob{
    width: 327px;
    height: 418px;
}
.card-container-mobile{
    display: none;
}
.approach__container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 96px;
    margin-bottom: 96px;
}

.markets__container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 96px;
}
.support__container{
        display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}
.pricing__title{
    font-size: 18px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: auto;
    margin-bottom: 32px;
    background: linear-gradient(90deg, #83DEFF 48.63%, #FF4319 51.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    max-width: 1200px;
text-align: center;
}
.pricing__subtitle{
font-family: 'Unbounded';
font-style: normal;
font-weight: 300;
font-size: 61px;
line-height: 110%;
text-align: center;
width: 590px;
background: linear-gradient(90deg, #83DEFF 26.79%, #FF4319 75.17%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
margin: auto;

}

.pricing__description{
font-family: 'Inter Tight';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 19px;
text-align: center;

color: #FFFFFF;
margin: auto;
margin-top: 24px;

}
.pricing__card{
    width: 387px;
    height: 467px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    background-color: #212121;
    border-radius: 24px;
    padding: 48px;
}
.pricing__card-name{

background: #111111;
border-radius: 40px;
font-family: 'Inter Tight';
font-style: normal;
font-weight: 400;
font-size: 24px;
color: #FFFFFF;
display: flex;
align-items: center;
justify-content: center;
height: 46px;
margin-bottom: 20px;
padding-left: 15px;
padding-right: 15px;
width: fit-content;

}
.pricing__card-price{
    font-family: 'Inter Tight';
font-style: normal;
font-weight: 400;
font-size: 48px;
color: #FFFFFF;
}
.pricing__card-description{

font-family: 'Inter Tight';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 120%;
color: #BFBFBF;

}

.pricing__card-link{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BFBFBF;
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    gap: 6px;
    background-color: transparent;
    border: 1px solid #353535;
    border-radius: 8px;
    text-decoration: none;
    height: 56px;
    text-transform: uppercase;
}

.pricing__card-link--primary{
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    gap: 6px;
    background-color: #fff;
    border-radius: 8px;
    text-decoration: none;
    height: 56px;
    text-transform: uppercase;
    z-index: 1;
  transition: color 0.3s ease-in-out;
}

.pricing__card-link--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(93.27deg, #84DCFD -6.79%, #FFFFFF 22.26%, #FFFFFF 80.38%, #EE5838 109.43%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

.pricing__card-link--primary:hover::before {
    opacity: 1;
}


.pricing__card-actions{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pricing__cards{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    background-image: url(../assets/images/bg-cards.png);
    background-size: 43% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.pricing__card {
    position: relative; /* нужно для абсолютного позиционирования бейджа */
}

.pricing__badge {
    position: absolute;
    top: -25px;
    right: -5px;
    
    color: #FFFFFF;
    
position: absolute;
width: 182px;
height: 46px;

background: linear-gradient(90deg, #85DBFB 2.11%, #F74C27 100%);
border-radius: 40px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400;

}
.markets__table{
    
    border-radius: 12px;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 96px;
}
.markets__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: white;
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400;
    background-color: #212121;
    height: 62px;
    padding: 24px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;

}
.markets__col-title{
    width: 180px;
}
.hr{
    height: 1px;
    width: 100%;
    background-color: #8C8C8C;
    opacity: 0.6;
}
.markets__row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background-color: #1B1B1B;

}
.markets__col-value{
    width: 180px;
    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: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #2DBD85;
    color: #2DBD85;
    border-radius: 8px;
    width: 120px;
}

.markets__col-value--negative{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #D33536;
    color: #D33536;
    border-radius: 8px;
    width: 120px;
}
.markets__col-title--change{
    width: 120px;
}
.markets__row-bg{
        display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background-color: #212121;
}
.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__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-table{
    width: 327px;
    color: white;
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400;
    display: flex;
    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{
    display: none;
}

.form-motto{


font-family: 'Inter Tight';
font-style: normal;
font-weight: 600;
font-size: 35px;
line-height: 120%;
text-align: center;

background: linear-gradient(90.44deg, #83DEFF 0.21%, #FF4319 97.67%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;


/* Inside auto layout */
flex: none;
order: 0;
align-self: stretch;
flex-grow: 0;

}

.input-form {
  display: flex;
  width: 488px;
  padding: 32px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
  align-self: stretch;
  border-radius: 24px;
  background: #FFF;
  box-shadow: 0px 4px 25px 0px rgba(100, 100, 111, 0.12);
  margin: auto;
}

.text-field {
  position: relative;
  margin-bottom: 1rem;
  transition: .2s ease-in-out;
}

/* Общие стили для инпутов и селектов */
.text-field__input {
  display: block;
  width: 424px;
  height: 42px;
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
}

/* Стиль для select */
.text-field__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2rem;
  color: #757575;
}

/* Убираем стандартный цвет у placeholder */
.text-field__input::placeholder {
  color: transparent;
}

/* Стили для фокуса */
.text-field__input:focus {
  border: 1px solid #4B00DD;
  outline: 0;
  transition: .2s ease-in-out;
}

/* Стили для лейбла */
.text-field__label {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  display: flex;
  transform: translateY(-50%);
  pointer-events: none;
  background-color: #fff;
  color: #757575;
  padding: 0 0.5rem;
  transition: top 0.2s ease-in-out, transform 0.2s ease-in-out, color 0.2s ease-in-out;
}

/* Переход лейбла вверх при фокусе или значении */
.text-field__input:focus ~ .text-field__label,
.text-field__input:not(:placeholder-shown) ~ .text-field__label,
.text-field__select:valid ~ .text-field__label {
  top: 0;
  transform: translateY(-50%) scale(0.75);
  color: black;
}

.form__submit {
  width: 324px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: black;
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  margin: auto;
  margin-top: 32px;
}

.form__submit:hover {
  background: #363636;
}

.form__submit:disabled {
  background-color: #d6d6d6;
  cursor: not-allowed;
}

.form-heading {
  color: black;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  width: 320px;
  margin: auto;
  margin-bottom: 32px;
}
.form{
    background-image: url(../assets/images/contact-bg.png);
    background-size: cover;
    padding-bottom: 48px;

}
.form-title{

font-family: 'Unbounded';
font-style: normal;
font-weight: 400;
font-size: 68px;
line-height: 105%;
text-align: center;
margin: auto;
padding-top: 46px;

color: #FFFFFF;
margin-bottom: 24px;
}
.form-subtitle{
width: 432px;
max-width: 432px;
height: 57px;

font-family: 'Inter Tight';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 19px;
text-align: center;
margin: auto;
color: #F4F4F4;
margin-bottom: 48px;

}
.form{
    margin-top: 96px;
}
.footer__menu-link{
    text-transform: uppercase;
    text-decoration: none;
    color: white;
font-family: 'Inter Tight';
font-style: normal;
font-weight: 400;
font-size: 14px;
text-align: center;
text-transform: uppercase;

color: #FFFFFF;
}

.footer__logo{

font-family: 'Inter Tight';
font-style: normal;
font-weight: 400;
font-size: 53px;

color: #FFFFFF;
text-decoration: none;
margin-bottom: 32px;
}
.footer__logo img {
    width: 150px;
}
.footer__menu{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer__container{
    display: flex;
    justify-content: space-between;
}
.footer__info{
    width: 435px;
}

.footer__disclaimer, .footer__company-number, .footer__address{
font-family: 'Inter Tight';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 19px;

color: #FFFFFF;

}

.footer__info{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer__contact{
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;

width: 435px;
height: 22px;

font-family: 'Inter Tight';
font-style: normal;
font-weight: 500;
font-size: 18px;
line-height: 22px;

color: #FFFFFF;

}

.footer__contact-link{
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
}
.footer__container{
    margin-top: 96px;
}
.rights{
    margin: auto;
    margin-top: 148px;
    padding-bottom: 48px;
    text-align: center;

font-family: 'Inter Tight';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 19px;
text-align: center;

color: #FFFFFF;

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

.nav-cont .logo img{
    width: 150px;
}
@media (max-width: 1200px){
        .container{
        width: 900px;
    }
    .hero__title{
        font-size: 60px;
    }
    .header{
        height: 750px;
    }
    .about__image{
        width: 350px;
    }
    .about__content{
        width: 420px;
    }
    .card-container{
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
    }
    .about__subtitle{
        font-size: 50px;
    }
    .pricing__card{
        width: 250px;
        padding: 24px;
    }


}
@media (max-width: 960px){
    .hero__title{
        font-size: 36px;
        text-align: center;
        margin-top: 100px;
    }
    .header {
    height: 550px;
  }
  .about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 60px;
}
.approach__container, .markets__container{
    flex-direction: column;
    gap: 60px;
}
.support__container{
    flex-direction: column-reverse;
    gap: 60px;
}
.pricing__cards{
    flex-direction: column;
    gap: 40px;
}
.pricing__card{
    width: 450px;
}
    .nav__menu{
        display: none;
    }
    .container{
        width: 527px;
    }

    .footer__info{
    display: none;
}
.footer__contact{
    width: unset;
    margin-top: 16px;
}
.rights{
    margin-top: 32px;
}
.footer__container{
    margin-top: 64px;
}
.footer__logo{
    font-size: 40px;
}
.pricing__subtitle{
    font-size: 45px;
}
body{
    overflow-x: hidden;
}
  .burger-icon{
        display: block;
    }
    .logo{
    position: relative;
    z-index: 10;
    margin-top: 42px;
}
.burger-menu ul {
  list-style: none;

  margin-top: 120px;
  text-align: left;
  text-decoration: none;
}
.burger-menu ul li a{
      color: white;
    font-family: "Inter Tight", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
}
.burger-hr{
    height: 1px;
    width: 100%;
    background-color: #fff;
    opacity: 0.2;
}
.burger-menu ul li{
    margin: 20px 0;
}
.markets__table{
    display: none;
}
.markets__mobile {
  display: block;
}
.markets__mobile-table-bg{
    max-width: 500px;
    margin: auto;
}
.markets__mobile-table{
    max-width: 500px;
    margin: auto;
}
.markets__mobile-radius{
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.row-radius{
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
}

@media (max-width: 580px) {
    .nav__menu{
        display: none;
    }
    .container{
        width: 327px;
    }
    .hero__title{
        font-size: 31px;
        width: 323px;
        margin-top: 40px;
        margin-bottom: 24px;
    }
    .hero__icon{
        width: 39px;
        height: 24px;
    }
    .hero__description{
        text-align: left;
        width: 327px;
        width: 320px;
    }
    .hero__cta{
        width: 327px;
        font-size: 16px;
    }
    .nav__register{
        display: none;
    }
    .header{
        height: 520px;
    }
    .burger-icon{
        display: block;
    }
    .about__container{
        flex-direction: column;
    }
    .about__text{
        margin-bottom: 32px;
        width: 327px;
    }
    .about__subtitle{
        width: 327px;
        font-size: 41px;
    }
    .about__content{
        width: 327px;
    }
    .card-container{
        display: none;
    }
    .about{
        margin-top: 64px;
    }
    .card-container-mobile{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 64px;
}
.approach__container{
    flex-direction: column-reverse;
    margin-bottom: 64px;
}
.markets__container{
    flex-direction: column;
    margin-bottom: 64px;
}
.support__container{
    flex-direction: column-reverse;
    margin-bottom: 64px;
}
.pricing__cards{
    flex-direction: column;
    gap: 20px;
    background-image: none;
    margin-top: 24px;
}
.pricing__card{
    width: 327px;
    padding: 32px;
}
.pricing__subtitle{
    width: unset;
    font-size: 41px;
}
.pricing__badge{
    width: 128px;
    height: 34px;
    font-size: 16px;
    top: -17px;
}
.markets__table{
    display: none;
}
.markets__mobile{
    display: block;
    margin: auto;
}
.markets__title{
    font-size: 41px;
    margin-top: 64px;
}
.input-form{
    width: 327px;
}
.text-field__input{
    width: 263px;
}
#requestForm{
    display: flex;
  flex-direction: column;
  align-items: center;
}
.form-motto{
    font-size: 25px;
}
.form__submit{
    width: 263px;
}
.form-subtitle{
    width: 327px;
}
.form-title{
    font-size: 41px;
}
.form{
    background-position: center;
    margin-top: 64px;
}
.footer__info{
    display: none;
}
.footer__contact{
    width: unset;
    margin-top: 16px;
}
.rights{
    margin-top: 32px;
}
.footer__container{
    margin-top: 64px;
}
.footer__logo{
    font-size: 40px;
}
.logo{
    position: relative;
    z-index: 10;
    margin-top: 42px;
}
.burger-menu ul {
  list-style: none;

  margin-top: 120px;
  text-align: left;
  text-decoration: none;
}
.burger-menu ul li a{
      color: white;
    font-family: "Inter Tight", sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
}
.burger-hr{
    height: 1px;
    width: 100%;
    background-color: #fff;
    opacity: 0.2;
}
.burger-menu ul li{
    margin: 20px 0;
}
}


