/*!********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/assets/css/index.scss ***!
  \********************************************************************************************************************/
  @import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap);
  /*!**********************************************************************************************!*\
    !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/css/components/form_startup.css ***!
    \**********************************************************************************************/
@keyframes bars {
  from {
    max-height: 0;
  }
  
  to {
    max-height: 100%;
  }
}

.main_wrap {
    div {
    max-height: 0;
    animation-name: bars;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860);
    animation-delay: 1.1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    
    &:nth-child(1) {height:25%}
    &:nth-child(2) {height:50%}
    &:nth-child(3) {height:75%}
  }
}    
@keyframes main_title {
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}
.main_title {
    transform: scale(0.95) translateY(5%);
    opacity: 0;
    filter: blur(30px);
    animation-name: main_title;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860);
    animation-delay: 0.1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.invest_card_wrap_title {
  color: #C3C8E6;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 32px;
}
.invest_main {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 2.5rem;
}
.invest_main_blog {
  flex: 1 1;
  flex-basis: calc(50% - 20px);
}
.a_click {
  color: #3b82f6 !important;
}
.loading-spinner {
  display: none; 
  margin-top: 10px;
  font-size: 14px;
  color: #007bff; 
}
  .form_startup_request {
    color: #c3c8e6;
    font-size: 20px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
  }
  .port_wrap {
    display: flex;
    justify-content: space-between;
  }
  .port_wrap_wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .form_startup_request span {
    margin-left: 4px;
  }
  .form_startup {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    padding: 40px;
    margin-top: 65px;
    width: 60%;
  margin-right: auto;
      margin-left: auto;
  }
  .form_startup_wrap {
    border-bottom: var(--border-width, 1px) solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin-top: 10px;
  }
  .form_startup_title {
    color: #fff;
    font-size: 40px;
    font-weight: 400;
    line-height: 90%;
    margin-top: 40px;
  }
  .form_startup_wrapper .form_wrap {
      margin-top: 24px;
  }
  .startup_blog .form_wrap:last-child {
      margin-bottom: 0;
  }
  .main_form {
      padding-bottom: 80px;
      position: relative;
  }
  
  
  
  
  
  
  
  
  .file-upload {
      /* display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; */
      width: 100%;
      color: #ffffff;
      text-align: center;
      padding: 20px;
      margin: 8px auto;
      position: relative;
      border-radius: 20px;
  border: var(--border-width, 1px) dashed rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
    }
    
    .file-upload-label {
      display: block;
      cursor: pointer;
    }
    
    .file-upload-icon img {
      width: 40px;
      height: 40px;
      margin-bottom: 10px;
    }
    
    .file-upload span {
      font-size: 16px;
      color: #ffffff;
    }
    
    .file-upload a {
      color: #3b82f6; 
      text-decoration: none;
    }
    
    .file-upload a:hover {
      text-decoration: underline;
    }
    
    .file-upload p {
      font-size: 12px;
      color: #9ca3af;
      margin-top: 10px;
    }
    
    .file-input {
      display: none;
    }
    .file-upload_title {
      color: #FFF;
  font-size: 16px;
  font-weight: 400;
    }
    .error-message {
      color: #ff4d4f; /* Красный цвет для ошибки */
      font-size: 12px;
      margin-top: 10px;
      display: none; /* Ошибка скрыта по умолчанию */
    }
    .file-name {
      font-size: 14px;
      margin-top: 10px;
      color: #333;
    }
    
    .form_startup_wrapper button{
      border: var(--border-width, 1px) solid rgba(255, 255, 255, 0.1);
      display: block;
      margin-left: auto;
      cursor: pointer;
    }
    .error-message-2 {
      color: #ff4d4f;
      font-size: 12px;
      margin-top: 10px;
    }
  
    /* for invest */
  
    /* Стили для переключателя */
  .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:checked + .slider:before {
    transform: translateX(26px);
  }
  .upload-error {
    color: #fff; 
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    display: none; 
    border-radius: 20px;
  border: var(--border-width, 1px) solid rgba(255, 111, 97, 0.20);
  background: rgba(255, 111, 97, 0.20);
  }
  #switch-id {
    margin-left: 5px;
  }
  .switch {
    margin-bottom: 0 !important;
  }
  /*!***************************************************************************************!*\
    !*** css ./node_modules/css-loader/dist/cjs.js!./src/assets/css/components/modal.css ***!
    \***************************************************************************************/
  .modal_wrapper {
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .modal {
    width: 40%;
    margin: 0 auto;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
  }
  .modal_wrapper .form_startup_title {
    margin-top: 20px;
    margin-bottom: 16px;
  }
  .modal_subtitle {
      text-align: center;
  }
  .modal_wrapper .button {
      border: var(--border-width, 1px) solid rgba(255, 255, 255, 0.1);
  }
  .w-49 {
    width: 490px;
  }
  .modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Центрирование по вертикали и горизонтали */
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Убедитесь, что модальное окно выше остальных элементов */
    border-radius: 8px;
    text-align: center;
  }
  /*!************************************************************************************************************************!*\
    !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/assets/css/index.scss (1) ***!
    \************************************************************************************************************************/
  @charset "UTF-8";
  .mt-2 {
    margin-top: 8px;
  }
  
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  .mb-2 {
    margin-bottom: 8px;
  }
  
  .button_sec {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    padding: 24px 32px;
    display: inline-block;
    color: #fff;
    border-radius: var(--border-radius-full, 999px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(55, 83, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    cursor: pointer;
  }
  .button_sec:hover { 
    border-top: var(--border-width, 1px) solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.10) 100%), rgba(55, 83, 255, 0.05);
    backdrop-filter: blur(10px);
  }
  .button {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    padding: 24px 32px;
    color: #fff;
    margin-top: 40px;
    display: inline-block;
    backdrop-filter: blur(40px);
    border-radius: var(--border-radius-full, 999px);
    border-top: var(--border-width, 1px) solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, #4277ff 0%, #1833da 100%);
    box-shadow: 0px 0px 40px 0px rgba(66, 120, 255, 0.5);
    cursor: pointer;
    transition: 0.3s;
  }
  .button:hover {
    border-top: var(--border-width, 1px) solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, #759CFE 0%, #1833DA 100%);
    box-shadow: 0px 0px 56px 0px rgba(66, 120, 255, 0.50);
  }
  .d-flex {
    display: flex;
  }
  
  .align-items-center {
    align-items: center;
  }
  
  .title {
    font-size: 72px;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: -5.04px;
  }
  
  .subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 24px;
    color: #C3C8E6;
  }
  
  .card_title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
  }
  
  .card_subtitle {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-top: 4px;
    color: #C3C8E6;
  }
  
  .card_img {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    margin-right: 30px;
  }
  .card_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .pt-240 {
    padding-top: 240px;
  }
  .pt-160 {
    padding-top: 160px;
  }
  .container {
    max-width: 1112px;
    margin: 0 auto;
  }
  
  body {
    font-family: "Inter", sans-serif;
    background-color: rgb(0, 3, 21);
    color: white;
  }
  
  html {
    font-family: "Inter", sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }
  
  body {
    margin: 0;
  }
  
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  main,
  menu,
  nav,
  section,
  summary {
    display: block;
  }
  
  audio,
  canvas,
  progress,
  video {
    display: inline-block;
  }
  
  audio:not([controls]) {
    display: none;
    height: 0;
  }
  
  progress {
    vertical-align: baseline;
  }
  
  template,
  [hidden] {
    display: none;
  }
  
  a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
  }
  
  a:active,
  a:hover {
    outline-width: 0;
  }
  
  abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  
  b,
  strong {
    font-weight: inherit;
    font-weight: bolder;
  }
  
  dfn {
    font-style: italic;
  }
  
  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  
  mark {
    background-color: #ff0;
    color: #000;
  }
  
  small {
    font-size: 80%;
  }
  
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
  
  img {
    border-style: none;
  }
  
  svg:not(:root) {
    overflow: hidden;
  }
  
  code,
  kbd,
  pre,
  samp {
    font-family: monospace, monospace;
    font-size: 1em;
  }
  
  figure {
    margin: 1em 40px;
  }
  
  hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
  }
  
  button,
  input,
  select,
  textarea {
    font: inherit;
    margin: 0;
  }
  
  optgroup {
    font-weight: 700;
  }
  
  button,
  input {
    overflow: visible;
  }
  
  button,
  select {
    text-transform: none;
  }
  
  button,
  html [type=button],
  [type=reset],
  [type=submit] {
    -webkit-appearance: button;
  }
  
  button::-moz-focus-inner,
  [type=button]::-moz-focus-inner,
  [type=reset]::-moz-focus-inner,
  [type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  
  button:-moz-focusring,
  [type=button]:-moz-focusring,
  [type=reset]:-moz-focusring,
  [type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  
  fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
  }
  
  legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
  }
  
  textarea {
    overflow: auto;
  }
  
  [type=checkbox],
  [type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
  }
  
  [type=number]::-webkit-inner-spin-button,
  [type=number]::-webkit-outer-spin-button {
    height: auto;
  }
  
  [type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
  }
  
  [type=search]::-webkit-search-cancel-button,
  [type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  ::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54;
  }
  
  ::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
  }
  
  p,
  figure,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
  }
  
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  a {
    text-decoration: none;
  }
  
  * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  a,
  button,
  input,
  textarea,
  .js-svg {
    -webkit-transition: background 0.2s, border 0.2s, color 0.2s;
    transition: background 0.2s, border 0.2s, color 0.2s;
  }
  
  .header {
    padding: 12px 0;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 90;
    background: linear-gradient(180deg, rgba(5, 6, 16, 0.60) 0%, rgba(5, 6, 16, 0.00) 50%);
  }
  .header_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header_link {
    margin-left: 16px;
    margin-right: 8px;
  }
  .header_wrap {
    display: flex;
  }
  .header_blog {
    display: flex;
  }
  .header_blog a {
    border-radius: 30px;
    padding: 8px 16px;
    color: #fff;
  }
  .header_blog a:first-child {
    border-radius: var(--border-radius-full, 999px);
    border-top: var(--border-width, 1px) solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(55, 83, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: 0.3s;
  }
  .header_blog a:first-child:hover {
    border-top: var(--border-width, 1px) solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.10) 100%), rgba(55, 83, 255, 0.05);
    backdrop-filter: blur(10px);
  }
  .header_blog a:last-child {
    border-radius: var(--border-radius-full, 999px);
    border-top: var(--border-width, 1px) solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, #4f67ff 0%, #1833da 100%);
    transition: 0.3s;
  }
  .header_blog a:last-child:hover {
    border-top: var(--border-width, 1px) solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, #759CFE 0%, #1833DA 100%);
    box-shadow: 0px 0px 56px 0px rgba(66, 120, 255, 0.50);
  }
  .header_logo {
    width: 160px;
    height: 32px;
    flex-shrink: 0;
  }
  .header_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .language {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8px 16px;
    border-radius: var(--border-radius-full, 999px);
    border-top: var(--border-width, 1px) solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(55, 83, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: 0.3s;
  }
  .language:hover {
    border-top: var(--border-width, 1px) solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.10) 100%), rgba(55, 83, 255, 0.05);
    backdrop-filter: blur(10px);
  }
  .language-list {
    display: none;
    position: absolute;
    background-color: #fff;
    z-index: 5;
    top: 42px;
    border-radius: 20px;
    width: 100%;
  }
  .language-list li {
    display: block;
  }
  .language-list li a {
    font-size: 16px;
    font-weight: 500;
    color: #1833da;
    transition: 0.3s;
    padding: 12px 16px;
    display: block;
    text-align: center;
  }
  .language-list li a:hover {
    color: #000;
  }
  .language-list.active {
    display: block;
  }
  .language-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: white;
    font-weight: 500;
    line-height: normal;
  }
  .language-toggle svg {
    margin-left: 4px;
    width: 16px;
    height: 16px;
  }
  
  .z-index-1 {
    z-index: -1;
  }
  
  .main_wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 120px;
  }
  .main_title {
    font-size: 120px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    line-height: 90%;
    color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    letter-spacing: -0.525rem;
    font-size: clamp(4rem, 2rem + 5vw, 7.5rem);
  }
  .main_title span {
    background: linear-gradient(180deg, #fff 20%, rgba(255, 255, 255, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 0.525rem;
  }
  .main_title .unicorn_line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25ch;
  }
  .main_title .unicorn_image {
    width: 80px;
    margin-right: 10px;
  }
  .main_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 40px;
    height: 360px;
  }
  .main_wrap_card {
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    flex: calc(25% - 40px);
  }
  .main_wrap_card_one {
    height: 25%;
    /* height: 125px;
    margin-right: 2%; */
  }
  .main_wrap_card_three {
    height: 75%;
  }
  .main_wrap_card_two {
    height: 50%;
  }
  .main_wrap_card_four {
    height: 100%;
  }
  .main_back {
    position: relative;
    padding-top: 70px;
  }
  .main_back_after {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: -4%;
  }
  .main_back_before {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 10%;
  }
  
  .bac_stars {
    position: absolute;
    top: -10%;
    width: 450px;
    height: 350px;
  }
  .bac_stars img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  .main_back::after {
    content: "";
    background: radial-gradient(62.38% 100% at 50% 0%, rgba(24, 51, 218, 0.7) 0%, #000315 90%);
    background-attachment: fixed;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .unicorn_img {
    height: 1em;
  }
  .unicorn_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .funding_wrap {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
  }
  .funding_item {
    display: inline-flex;
    padding: 2px 8px;
    border-radius: 100%;
    background: linear-gradient(rgb(79, 103, 255), rgb(24, 51, 218));
    color: #000;
    margin-bottom: 11px;
    font-weight: 600;
    font-size: 16px;
  }
  .funding_card {
    /* width: 24%;
    margin-right: 4%; */
    flex: 1 1;
  }
  
  .partner_card {
    display: flex;
    align-items: center;
    flex-basis: calc(50% - 20px);
  }
  .partner_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 56px;
    gap: 2.5rem;
  }
  
  .invest_wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(32px);
    padding: 40px;
    border-radius: 20px;
    margin: 56px 0;
    display: flex;
    gap: 2.5rem;
  }
  .invest_label {
    color: #ced5ff;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 12px;
  }
  .invest_tab {
    font-weight: 400;
    font-size: 16px;
    padding: 15px 24px;
    color: #fff;
    margin-right: 8px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 8px;
  }
  .invest_wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .invest_title {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
  }
  .invest_block {
    display: flex;
    flex-direction: column;
  }
  .invest_blog {
    flex: 1 1;
  }
  .invest_card_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
  }
  .invest_card {
    /* width: 24%;
    margin-right: 1%; */
    flex: 1 1;
  }
  .invest_card:last-child {
    margin-right: 0%;
  }
  .invest_card_title {
    font-size: 56px;
    font-weight: 400;
    color: #fff;
  }
  .invest_card_subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #C3C8E6;
  }
  
  .mt-6 {
    margin-top: 24px;
  }
  .port_img {
    display: block;
    width: 100%;
  }
  .portfolio_wrapper {
    display: flex;
    gap: 2.5rem;
  }
  .portfolio_blog {
    flex: 1 1;
  }
  .portfolio_card {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .portfolio_wrap {
    margin-top: 48px;
  }
  .portfolio_img_1 {
    margin-bottom: 24px;
  }
  .portfolio_img_img {
    width: 530px;
    height: 350px;
  }
  
  .power_img {
    width: 100%;
    height: auto;
    margin: 56px 0;
  }
  .power_img img {
    width: 100%;
    height: 100%;
  }
  .power_wrapper {
    display: flex;
    margin-bottom: 40px;
    gap: 2.5rem;
  }
  .power_blog {
    flex: 1 1;
  }
  .power_subtitle {
    color: #C3C8E6;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 28px;
  }
  .power_card {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .power_block {
    margin-left: 2%;
  }
  
  .feedback_subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #c3c8e6;
    margin: 24px 0;
  }
  .feedback_undertitle {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-left: 12px;
  }
  .feedback_wrapper {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
  .feedback_blog {
    flex: 1 1;
  }
  
  .form {
    border-radius: 20px;
    backdrop-filter: blur(32px);
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
  }
  .form_wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
  }
  .form_wrap label {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
  }
  .form_wrap input,
  .form_wrap textarea {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: #fff;
    outline: 1px solid rgba(255, 255, 255, 0.03);
  }
  .form_wrap textarea {
    resize: vertical;
    max-height: 30rem;
    min-height: 6.5rem;
  }
  .form_button {
    display: flex;
  }
  .form_button a {
    margin-left: auto;
  }
  
.tab {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  margin-bottom: 10px;
  border-radius: 20px;
  backdrop-filter: blur(32px);
  cursor: pointer;
}

.tab-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.tab-content {
  max-height: 0; 
  opacity: 0; 
  overflow: hidden; 
  transition: max-height 0.5s ease, opacity 0.5s ease; 
}

.tab.active .tab-content {
  max-height: 500px; 
  opacity: 1; 
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.toggle-icon {
  transition: transform 0.3s ease;
  font-size: 22px;
  margin-left: 10px;
}

.tab.active .toggle-icon {
  transform: rotate(45deg);
}
  
  .tabs {
    margin-top: 60px;
  }
  
  .tab_title {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
  }
  
  .tab_subtitle {
    color: rgba(195, 200, 230, 0.8);
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
    display: block;
  }
  
  .questions_contact {
    color: #C3C8E6;
    font-size: 16px;
    font-weight: 400;
    margin-top: 40px;
    display: block;
  }
  .questions_contact a {
    color: #C3C8E6;
    text-decoration: underline;
  }
  
  .startup_wrapper {
    background-image: url(/assets/68b3bc593fb016a1121d.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 40px;
    border-radius: 20px;
  }
  .startup_wrapper .title {
    text-align: center;
  }
  .startup_buttons_first {
    color: #fff;
    border-radius: var(--border-radius-full, 999px);
    border-top: var(--border-width, 1px) solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(55, 83, 255, 0.05);
    backdrop-filter: blur(10px);
    margin-right: 20px;
  }
  .startup_buttons_sec {
    color: #1833da;
    background: #fff;
  }
  .startup_buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
  }
  .startup_buttons a {
    border-radius: 999px;
    padding: 24px 32px;
    backdrop-filter: blur(20px);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
  }
  
  .footer_icons {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer_icons a {
    width: 32px;
    height: 32px;
    margin-right: 27px;
  }
  .footer_icons a:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
  .footer_icons a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  footer {
    padding-bottom: 80px;
  }
  
  @media screen and (max-width: 1800px) {
    /* .container {
      width: 1500px;
    } */
    .main_wrapper {
      margin-top: 100px;
    }
    /* .main_title {
      font-size: 100px;
    } */
  }
  @media screen and (max-width: 1700px) {
    /* .container {
      width: 1300px;
    } */
    .main_wrapper {
      margin-top: 70px;
    }
    /* .main_title {
      font-size: 95px;
    } */
    .startup_wrapper .title {
      font-size: 68px;
    }
  }
  @media screen and (max-width: 1500px) {
    /* .container {
      width: 1200px;
    } */
    /* .main_title {
      font-size: 90px;
    } */
  }
  @media screen and (max-width: 1350px) {
    /* .container {
      width: 1100px;
    } */
    /* .main_title {
      font-size: 82px;
    } */
    .main_wrapper {
      margin-top: 60px;
    }
    .bac_stars {
      width: 400px;
      height: 300px;
    }
    .pt-240 {
      padding-top: 210px;
    }
    .title {
      font-size: 68px;
    }
    .invest_card_title {
      font-size: 53px;
    }
    .portfolio_img_img {
      width: 500px;
      height: 350px;
    }
    .card_img {
      margin-right: 20px;
    }
    .startup_wrapper .title {
      font-size: 62px;
    }
     .port_wrap_img img{
      width: 240px;
      margin-right: 24px;
    }
    
    .port_wrap_wrap img {
      width: 240px;
    }
  }
  @media screen and (max-width: 1200px) {
    /* .container {
      width: 1000px;
    } */
    .invest_card_title {
      font-size: 48px;
    }
    .power_img {
      height: 420px;
      margin: 40px 0;
    }
    .startup_wrapper .title {
      font-size: 57px;
    }
    .form {
      padding: 30px;
    }
    .form_startup {
      width: 80%;
    }
  }
  @media screen and (max-width: 1100px) {
    .container {
      width: 100%;
      padding: 0 1rem;
    }
    .modal {
      width: 60%;
    }
    /* .main_title {
      font-size: 75px;
    } */
    .main_wrapper {
      margin-top: 50px;
    }
    .main_back_before {
      top: 0%;
    }
    .pt-240 {
      padding-top: 180px;
    }
    .title {
      font-size: 64px;
    }
    .invest_wrapper {
      padding: 35px;
      margin: 50px 0;
    }
    .pt-240 {
      padding-top: 150px;
    }
    .title {
      font-size: 60px;
    }
    .invest_card_title {
      font-size: 44px;
    }
    .portfolio_img_img {
      width: 450px;
      height: 330px;
    }
    .portfolio_wrap {
      margin-top: 38px;
    }
    .startup_wrapper .title {
      font-size: 52px;
      line-height: 60px;
    }
    .port_wrap_img img {
      width: 210px;
    }
    .port_wrap_wrap img {
      width: 210px;
    }
  }
  @media screen and (max-width: 1000px) {
    /* .container {
      width: 800px;
    } */
    /* .main_title {
      font-size: 70px;
    } */
    .main_back_after {
      top: -12%;
    }
    .main_back_before {
      top: -10%;
    }
    .invest_card_title {
      font-size: 40px;
    }
    .startup_wrapper {
      padding: 70px 30px;
    }
    .startup_wrapper .title {
      font-size: 48px;
      line-height: 55px;
    }
    .feedback_wrapper {
      flex-direction: column;
    }
    .feedback_blog {
      width: 100%; 
    }
  }
  @media screen and (max-width: 880px) {
    /* .container {
      width: 700px;
    } */
    .invest_card_title {
      font-size: 36px;
    }
    .invest_card_subtitle {
      font-size: 15px;
    }
    .pt-240 {
      padding-top: 120px;
    }
    .portfolio_wrapper {
      flex-direction: column;
    }
    .portfolio_blog {
      margin-left: 0px;
      margin-top: 30px;
    }
    .portfolio_img_1 {
      margin-bottom: 20px;
    }
    .portfolio_img_img {
      width: 550px;
      height: 350px;
    }
    .power_img {
      height: 350px;
    }
    .power_wrapper {
      flex-direction: column;
      gap: 1.5rem;
    }
    .power_blog {
      /* width: 100%; */
    }
    .startup_wrapper {
      padding: 60px 30px;
    }
    .startup_wrapper .title {
      font-size: 42px;
      line-height: 45px;
    }
    .form_startup {
      width: 100%;
    }
    .port_wrap_img img {
      width: 260px;
    }
    .port_wrap_wrap img {
      width: 260px;
    }
    .port_wrap {
      justify-content: flex-start;
    }
    .startup_buttons {
      flex-direction: column;
    }
    .startup_buttons .startup_buttons_sec {
      margin-top: 20px;
    }
    .header_link {
      display: none;
    }
    .invest_main {
      flex-direction: column;
    }
    .pt-160 {
      padding-top: 120px;
    }
    .main_wrap {
      height: 300px;
    }
    .header_blog a:last-child {
      margin-left: 10px;
    }
  }
  @media screen and (max-width: 780px) {
    /* .container {
      width: 600px;
    } */
    .modal {
      width: 80%;
    }
    .startup_buttons a {
      font-size: 18px;
    }
    /* .main_title {
      font-size: 65px;
    } */
    .invest_wrapper {
      padding: 30px;
      margin: 40px 0;
      flex-direction: column;
    }
    /* .invest_blog {
      width: 100%;
    } */
    /* .invest_block {
      margin-top: 20px;
    } */
    .subtitle {
      margin-top: 20px;
    }
    .title {
      font-size: 52px;
      letter-spacing: -3px;
    }
    .invest_card_title {
      font-size: 32px;
    }
    .invest_card_subtitle {
      font-size: 14px;
    }
    /* .invest_card {
      width: 48%;
      margin-bottom: 10px;
    } */
    .funding_card {
      /* width: 47%;
      margin-right: 2%;
      margin-bottom: 20px; */
      flex-basis: 46%;
    }
    .partner_wrapper {
      margin-top: 42px;
    }
    .power_img {
      height: auto;
      margin: 30px 0;
    }
    .startup_wrapper .title {
      font-size: 38px;
      line-height: 42px;
    }
    .startup_wrapper {
      padding: 50px 30px;
    }
    .startup_buttons a {
      padding: 20px 28px;
    }
    .form_startup_title {
      font-size: 35px;
    }
    .invest_card {
      flex: 1 1 46%;
    }
    .partner_wrapper {
      gap: 1.5rem;
    }
    .partner_card {
      flex-basis: calc(100% - 20px);
    }
    .invest_main {
      gap: 2rem;
    }
    .main_wrap {
      gap: 30px;
      margin-top: 40px;
    }
  }
  @media screen and (max-width: 680px) {
    /* .container {
      width: 500px;
    } */
    .main_back_before {
      top: -19%;
    }
    .main_back_after {
      top: -20%;
    }
    .header_link {
      display: none;
    }
    .language {
      margin-right: 15px;
    }
    .title {
      font-size: 48px;
    }
    .title .invest_card_title {
      font-size: 28px;
    }
    .subtitle {
      font-size: 18px;
    }
    .invest_title {
      font-size: 18px;
    }
    .portfolio_img_img {
      width: 500px;
      height: 300px;
    }
    .portfolio_wrap {
      margin-top: 28px;
    }
    .startup_wrapper .title {
      font-size: 32px;
      line-height: 36px;
    }
    .startup_wrapper {
      padding: 40px 20px;
    }
    .form_startup_wrap {
      padding-bottom: 30px;
    }
    .port_wrap_img img {
      width: 230px;
    }
    .port_wrap_wrap img {
      width: 230px;
    }
    .main_wrap {
      height: 240px;
      gap: 12px;
    }
    .pt-160 {
      padding-top: 100px;
    }
  }
  @media screen and (max-width: 570px) {
    /* .container {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px;
    } */
    .modal {
      width: 90%;
    }
    .invest_card {
      display: flex;
      align-items: center;
      flex: 1 1 100%;
    }
    .invest_card_title {
      font-size: 28px;
      width: 30%;
    }
    .title {
      font-size: 40px;
      line-height: 36px;
    }
    .subtitle {
      font-size: 16px;
    }
    .funding_card {
      /* width: 100%;
      margin-right: 0%; */
      display: flex;
      flex-basis: 100%;
    }
    .funding_blocking {
      margin-right: 15px;
    }
    .funding_item {
      margin-right: 10px;
      margin-bottom: 0;
    }
    .portfolio_img_img {
      width: 100%;
      height: 250px;
    }
    .power_subtitle {
      font-size: 18px;
    }
    .tab_title {
      font-size: 18px;
    }
    .tab.active .tab-content {
      max-height: 100%;
    }
    .startup_buttons a {
      border-radius: 30px;
      padding: 20px 30px;
    }
    .startup_wrapper .title {
      font-size: 28px;
      line-height: 31px;
    }
    .startup_buttons {
      margin-top: 30px;
    }
    .form_startup_title {
      font-size: 32px;
    }
    .port_wrap_img {
      margin-right: 20px;
    }
    .port_wrap_img img {
      width: 100%;
    }
    .port_wrap_wrap img {
      width: 100%;
    }
    .pt-160 {
      padding-top: 80px;
    }
  }
  @media screen and (max-width: 530px) {
    .header_blog:nth-child(2){
      display: none;
    }
  }
  @media screen and (max-width: 500px) {
    .header_blog a:last-child span {
      display: none;
    }
    .modal_wrapper .button {
      margin-top: 30px;
    }
    .partner .button {
      margin-top: 40px;
    }
    .button {
      margin: 0 auto;
      display: block;
      text-align: center;
    }
    .button_sec {
      margin: 0 auto;
      display: block;
      text-align: center;
    }
    .startup_buttons {
      display: block;
    }
    .startup_buttons a {
      display: block;
      text-align: center;
    }
    .startup_buttons_first {
      margin-right: 0;
      margin-bottom: 8px;
    }
    .feedback_blog {
      width: 100%;
    }
    .form_button a {
      margin-left: 0;
      width: 100%;
    }
    .bac_stars {
      width: 100%;
    }
    .form_startup_wrapper button {
      width: 100%;
      margin-top: 20px;
    }
    .title {
      font-size: 42px;
    }
  }
  @media screen and (max-width: 400px) {
    .language {
      margin-right: 0;
    }
    .partner_wrapper {
      margin-top: 32px;
    }
    .form_startup {
      padding: 30px;
    }
    .form_startup_wrapper .form_wrap {
      margin-top: 19px;
    }
    .form_startup_title {
      margin-top: 30px;
    }
    .invest_card {
      justify-content: space-between;
    }
    .title {
      font-size: 35px;
      line-height: 41px;
    }
  }
  @media screen and (max-width: 350px) {
    .header_logo {
      width: 130px;
      height: 30px;
    }
    .language {
      padding: 8px 12px;
    }
    .header_blog a:last-child {
      padding: 8px 12px;
    }
    .invest_tab {
      padding: 13px 19px;
    }
    .invest_card_title {
      font-size: 24px;
    }
    /* .main_title {
      font-size: 60px;
    } */
  }
  