/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

body {
  font-family: Roboto, sans-serif;
  background-image: url('../img/background.png');
  background-size: cover;
  /*background-position: center;*/
  background-repeat: no-repeat;
  background-attachment: scroll;
}

body.no-scroll {
  overflow: hidden;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: '';
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
  }

  abbr[title]::after {
    content: ' (' attr(title) ')';
  }

  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^='#']::after,
  a[href^='javascript:']::after {
    content: '';
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

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

section {
  padding: 70px 0;
}

.header-section,
.footer-section {
  width: 100%;
  background: rgba(60, 60, 60, 0.45);
}

.footer-section {
  background: #2b2b2b;
}

.underline {
  width: 70%;
  height: 3px;
  background-color: #ff3d3d;
  margin-top: 10px;
  border-radius: 5px;
}

.navbar {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand img {
  width: 120px;
}

.navbar-nav {
  flex-direction: row;
  gap: 20px;
}

.navbar-nav .nav-link {
  font-size: 18px;
  color: #000;
  padding: 0 15px;
}

.navbar-nav .nav-link:hover {
  color: #00c2e7;
}

.navbar-icons {
  gap: 10px;
}

.flag-img {
  width: 150px;
}

.btn-outline-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  width: 50px;
  height: 50px;
  border-color: #00c2e7;
  border-radius: 50%;
}

.btn-outline-primary:hover {
  background-color: #00c2e7;
  color: #fff;
}

.main-section {
  background-image: url(../img/main-bg.png);
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 100vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 70px;
}

.start-page__body h1 {
  text-transform: uppercase;
}

.main-section h1 {
  color: #fff;
  font-size: 43px;
  font-style: normal;
  font-weight: 900;
  line-height: 64px;
  letter-spacing: 0.01px;
  text-transform: uppercase;
}

.main-section p {
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}

.red-line {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
}

.red-line .underline {
  margin: 0;
  width: 100%;
  border-radius: 5px;
}

.benefit-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
}

.benefit-box .underline {
  margin: 0;
  width: 100%;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.5);
}

.benefit-box h2 {
  color: #fff;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 128.571% */
  letter-spacing: 0.01px;
  text-transform: uppercase;
}

.benefit-box p {
  color: rgba(255, 255, 255, 0.5);
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 150% */
  letter-spacing: 0.01px;
  text-transform: uppercase;
}

#investment-container .benefit-box h2 {
  color: black;
}

#investment-container .benefit-box p {
  color: rgba(29, 42, 75, 0.5);
}

#investment-container .benefit-box .underline {
  background: rgba(29, 42, 75, 0.2);
  margin-bottom: 32px;
}

.investment-container {
  margin-top: -50px;
}

.investment-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.intro-text {
  flex: 1 1 25%;
  padding: 20px;
}

.intro-text h2 {
  font-size: 24px;
  font-weight: 700;
  color: #192141;
  line-height: 1.3;
}

.intro-text .underline {
  width: 70%;
  height: 3px;
  background-color: #ff3d3d;
  margin-top: 10px;
  border-radius: 5px;
}

.investment-options {
  flex: 3 1 75%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.investment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #e0e0e0;
  padding: 40px;
  background-color: #fafafa;
  transition: transform 0.3s ease;
}

.investment-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.investment-card h3 {
  font-size: 16px;
  color: #192141;
  margin-bottom: 15px;
  line-height: 1.4;
  height: 45px;
}

.btn-invest {
  border: 1px solid #ff3d3d;
  background-color: transparent;
  color: #ff3d3d;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-invest:hover {
  background-color: #ff3d3d;
  color: #ffffff;
}

.banner {
  background: url('../img/banner-bg.png') no-repeat center center/cover;
  color: #ffffff;
  padding: 40px;
  text-align: center;
  position: relative;
  border-radius: 10px;
}

.banner-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  width: fit-content;
  width: -moz-fit-content;
  margin: 0 auto;
}

.banner-title::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ff3d3d;
  margin: 10px auto 20px auto;
}

.banner-steps {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  max-width: 700px;
}

.step {
  flex: 1;
  padding: 40px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.step h3 {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 21px; /* 87.5% */
  letter-spacing: 0.01px;
  text-transform: uppercase;
}

.step p {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 150% */
  letter-spacing: 0.01px;
}

.banner-footer {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
}

.video-section .underline {
  width: 70%;
}

.video-description {
  border-radius: 10px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  background: #fff;
  box-shadow: 0px 13px 16px 0px rgba(0, 0, 0, 0.04);
  padding: 24px;
}

.video-description h2 {
  color: #1d2a4b;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%;
  letter-spacing: 0.01px;
  text-transform: uppercase;
}

.video-description p {
  color: rgba(29, 42, 75, 0.6);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.01px;
}

.play-button button {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ff3d3d;
  border: none;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}

.play-button button:hover {
  transform: scale(1.1);
}

.banner-section {
  background: url('../img/graph-bg.png') no-repeat center center/cover;
  position: relative;
  border-radius: 10px;
}

.banner-section .underline {
  width: 50%;
  height: 3px;
  background-color: #ff3d3d;
}

.start-test-btn {
  background-color: #ff3d3d;
  border: none;
  border-radius: 30px;
  transition: transform 0.3s ease;
}

.start-test-btn:hover {
  transform: scale(1.05);
  background-color: #e83232;
}

.comments-header {
  margin-bottom: 20px;
}

.comments-title {
  font-size: 24px;
  font-weight: bold;
  color: #192141;
  margin-bottom: 5px;
}

.comments-underline {
  width: 50px;
  height: 3px;
  background-color: #ff3d3d;
}

.comments-section {
  margin-bottom: 20px;
}

.comment-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-author {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #192141;
  text-transform: uppercase;
}

.comment-text {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.comment-form {
  display: flex;
  margin-top: 20px;
}

.comment-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.comment-button {
  margin-left: 10px;
  border-radius: 32px;
  color: black;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s ease;
  background: transparent;
}

.comment-button:hover {
  background-color: black;
  color: white;
}

.comment-note {
  font-size: 12px;
  color: #777;
  margin-top: 10px;
}

.comment-note {
  transition: color 0.3s; /* Плавное изменение цвета */
}

.comment-note.highlight {
  color: #ff0000; /* Красный текст */
}

#modalForm {
  background: white;
  color: black;
}

#finalFormContent input {
  width: 100%;
  border: 1px solid #eee;
  background: transparent;
  padding: 10px;
  border-radius: 5px;
}

#finalFormContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 20px;
  padding: 50px 30px;
  background: white;
  border-radius: 10px;
}

.iti {
  width: 100%;
}

.iti__flag-container {
  right: 15px;
  background: #eee;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.iti--separate-dial-code .iti__selected-flag {
  background-color: #eee;
}

.form-box {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-control {
  font-size: 16px;
  padding: 15px;
  margin-bottom: 10px;
}

.btn-primary {
  width: 100%;
  background-color: #000033;
  border: none;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
}

.btn-primary:hover {
  background-color: #000066;
}

.advantages-section {
  padding: 40px 0;
  background: #000036;
  background-image: url('../img/adv-bg.png');
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: left bottom;
  color: white;
}

.advantages-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: #00c2e7;
}

.advantages-section h4 {
  font-size: 18px;
  font-weight: 400;
}

.advantages-section p {
  font-size: 14px;
  font-weight: 300;
}

.img-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.img-box .d-flex {
  gap: 20px;
}

.stats-section {
  background: url(../img/stats-bg.png) no-repeat bottom right,
    linear-gradient(to right, white 51%, #00c2e7 49%);
  background-size: auto 50%;
  position: relative;
  overflow: hidden;
}

.stats-section h2 {
  color: #00c2e7;
  font-size: 32px;
  font-weight: 800;
}

.stats-section p {
  font-size: 16px;
  font-weight: 400;
}

.calculator-box {
  display: flex;
  gap: 20px;
}

#CalculatorContainer .underline {
  width: 50%;
}

.input-box,
.output-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 0;
  width: 100%;
}

.input-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.output-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.input-wrapper {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  border-radius: 10px;
  height: 100px;
  width: 100%;
  position: relative;
}

.currency-input {
  display: flex;
  align-items: center;
  width: 100%;
}

.calculator-box input[type='text'] {
  width: 100%;
  padding: 0 35px;
  font-size: 34px;
  font-weight: 700;
  text-align: left;
  border: none;
  outline: none;
  background: transparent;
}

.button-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.step-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.step-btn svg {
  width: 18px;
  height: 15px;
}

.output-wrapper {
  background: #000033;
  color: white;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 700;
  border-radius: 10px;
}

.stats-box {
  text-align: left;
  padding-left: 20%;
}

.stats-box:first-child {
  margin-bottom: 30px;
}

.stats-box p {
  color: white;
  font-size: 20px;
  font-weight: 400;
}

.stats-box span {
  color: white;
  font-size: 64px;
  font-weight: 800;
}

/*.footer-section {*/
/*    background: url("/img/footer-bg.png");*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*    max-height: 600px;*/
/*    padding: 100px 0;*/
/*}*/

/*.footer-section h2 {*/
/*    color: #00C2E7;*/
/*    font-size: 42px;*/
/*    font-weight: 700;*/
/*}*/

/*.footer-section p {*/
/*    color: white;*/
/*    font-size: 16px;*/
/*    font-weight: 400;*/
/*}*/

.default-btn {
  padding: 20px 50px;
  text-decoration: none;
  border-radius: 35px;
  background: #8a0300;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;

  letter-spacing: 0.01px;
  text-transform: uppercase;
}

.footer {
  background-color: #000033;
  color: #fff;
  padding: 20px 0;
}

#FormSection {
  padding-top: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 120px;
}

.footer p {
  font-size: 14px;
  color: #ccc;
  margin: 0;
  flex-grow: 1;
  text-align: center;
}

.footer-link {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
  margin-right: 20px;
}

.footer-link:hover {
  color: #00c2e7;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon img {
  width: 24px;
  height: 24px;
}

.social-icon {
  display: inline-block;
}

.social-icon:hover img {
  filter: brightness(1.5);
}

.chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: none;
  width: 130px;
  height: 120px;
  font-size: 20px;
  cursor: pointer;
  z-index: 1000;
  background: transparent;
}

/* Окно чата */
.chatbot-window {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 350px;
  height: 90vh;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
}

@media (max-width: 768px) {
  .chatbot-window {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    right: 0;
    bottom: 0;
  }
}

/* Хедер */
.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: #192141;
  color: #fff;
  border-bottom: 1px solid #ddd;
}

.chatbot-icon {
  width: 30px;
  height: 30px;
}

.chatbot-title {
  margin: 0;
  font-size: 16px;
}

.chatbot-close {
  background: none;
  border: none;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

/* Тело чата с прокруткой */
.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background-color: #f9f9f9;
  scroll-behavior: smooth;
}

.chatbot-body::-webkit-scrollbar {
  width: 8px;
}

.chatbot-body::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

.chatbot-message {
  margin: 5px 0;
  padding: 10px;
  border-radius: 10px;
  word-wrap: break-word;
}

.user-message {
  background-color: #e1f5fe;
  text-align: left;
  margin-left: auto;
  width: fit-content;
  width: -mox-fit-content;
}

.bot-message {
  margin-right: auto;
  width: fit-content;
  text-align: right;
  width: -mox-fit-content;
}

.bot-message {
  background-color: #f1f1f1;
  text-align: left;
}

.bot-first {
  background-color: #ddd;
  width: fit-content;
  width: -moz-fit-content;
  color: #1d2a4b;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* Футер */
.chatbot-footer {
  border-top: 1px solid #ddd;
  background-color: #fff;
  padding: 10px;
}

/* Контейнер для инпута и кнопки */
.input-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

#chat-input {
  width: 100%;
  padding: 10px 40px 10px 15px; /* Отступы: 40px для кнопки справа */
  border: 1px solid #ddd;
  border-radius: 20px;
  resize: none; /* Отключить изменение размера */
  overflow-y: auto; /* Прокрутка при большом количестве текста */
  font-size: 14px;
  box-sizing: border-box;
  line-height: 1.5;
}

#send-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

/* Надпись */
.chatbot-note {
  font-size: 12px;
  color: #777;
  text-align: center;
  margin: 5px 0;
}

.chatbot-questions .question-btn {
  display: block;
  margin-bottom: 5px;
  padding: 10px;
  background-color: #192141;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.chatbot-questions .question-btn:hover {
  background-color: #0e1830;
}

.modal {
  --bs-modal-width: 1199px;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
}

.modal-content {
  max-width: 1199px;
  min-width: 1199px;
  background-color: white;
  border-radius: 10px;
  min-height: 500px;
}

.modal-content .row {
  min-height: 500px;
}

#imageContainer img {
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
}

.question {
  color: #1d2a4b;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%; /* 33.6px */
  text-transform: uppercase;
}

#CalculatorContainer {
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid rgba(112, 112, 112, 0.2);
  border-radius: 10px;
}

#CalculatorContainer h2 {
  color: #1d2a4b;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%;
  text-transform: uppercase;
}

#questionContainer .underline {
  width: 50%;
}

.question-block,
.form-description {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.form-description {
  justify-content: center;
  color: white;
}

.form-description .underline {
  width: 50%;
}

.form-description h2 {
  margin-top: 32px;
  color: #fff;
  font-family: Roboto;
  font-size: 44px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%; /* 61.6px */
  text-transform: uppercase;
}

.form-description h3 {
  margin-top: 10px;
  color: #fff;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%; /* 33.6px */
  text-transform: uppercase;
}

.form-description p {
  color: #fff;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
}

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

.progress-indicator {
  margin-top: 10px;
}

.progress-indicator span {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  border-radius: 50%;
  display: inline-block;
  background-color: white;
  border: 1px solid #ff3823;
}

.progress-indicator .active {
  background-color: #ff3823;
}

.mobile-header {
  display: none;
  justify-content: flex-start;
  background: white;
}

.form-check {
  background: transparent;
  border-radius: 32px;
  border: 2px solid rgba(29, 42, 75, 0.2);
  max-width: 60%;
  color: rgba(29, 42, 75, 0.6);
}

.form-check:hover {
  border: 2px solid #1d2a4b;
  color: #1d2a4b;
}

.control {
  display: block;
  position: relative;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control__indicator {
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background: transparent;
  border: 1px solid #eeeeee;
}

.control--radio .control__indicator {
  border-radius: 50%;
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #1d2a4b;
}

.control input:checked ~ .control__indicator {
  background: #1d2a4b;
}

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #1d2a4b;
}

.modal-dialog {
  margin: 0 !important;
}

.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}

.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}

.control input:checked ~ .control__indicator:after,
.control input:hover ~ .control__indicator:after {
  display: block;
}

.control--checkbox .control__indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}

.control--radio .control__indicator:after {
  left: 50%;
  top: 50%;
  height: 6px;
  width: 6px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
}

.control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}

.scroll-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-decoration: none;
}

.scroll-button .circle {
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.scroll-button svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    margin-top: 10px;
  }

  .flag-img {
    width: 90px;
  }
}

@media (max-width: 1199px) {
  .modal-content {
    max-width: 1000px;
    min-width: unset;
  }
}

@media (max-width: 1024px) {
  .img-box .d-flex {
    flex-direction: column;
  }

  .stats-box span {
    font-size: 44px;
  }

  .output-wrapper,
  .calculator-box input[type='text'] {
    font-size: 26px;
  }

  .footer-section {
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 20px 0;
  }

  .footer-section h2 {
    font-size: 24px;
    margin-bottom: 30px !important;
  }

  .footer-section p {
    margin-bottom: 40px !important;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 10px;
  }

  .footer p {
    margin-bottom: 10px;
  }

  .footer-right {
    margin-top: 10px;
  }

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

@media (max-width: 991px) {
  .main-form {
    display: none;
  }

  .quiz_header_pc {
    display: none;
  }

  .modal,
  .modal-content {
    height: fit-content;
    position: relative;
    z-index: 9999;
  }

  .modal-content {
    max-width: 100%;
    min-width: 100%;
    min-height: 100vh;
    height: 100%;
  }

  .modal-dialog {
    margin: 0 !important;
  }

  .mobile-header {
    display: block;
  }

  .question-block,
  .form-description {
    padding: 24px 16px;
  }

  #CalculatorContainer {
    order: 1;
    padding: 24px 16px;
  }

  #questionBlock {
    order: 2;
    flex-grow: 1;
  }

  #questionSection {
    height: 100%;
    flex-direction: column;
    flex-grow: 1;
  }

  .form-description h2 {
    font-size: 34px;
  }

  .form-description h3 {
    font-size: 22px;
  }

  .form-description p {
    font-size: 14px;
  }

  #modalForm .form-container {
    padding: 0 16px;
  }

  .text-muted {
    font-size: 12px;
  }

  .mobile-header .navbar {
    width: 100%;
  }

  .form-check {
    max-width: 100%;
  }

  .input-wrapper,
  .output-wrapper {
    height: 70px;
  }

  .chatbot-toggle {
    width: 90px;
    height: 90px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .main-section .row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .welcome-section .col-lg-6 {
    order: 2;
  }

  .car-container {
    order: 1 !important;
  }

  .img-box,
  .img-box .d-flex {
    flex-direction: row;
  }

  .img-box {
    margin-bottom: 50px;
  }

  .person-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
  }

  .person-img {
    max-width: 150px;
  }

  .stats-section {
    background: url('../img/stats-bg.png') no-repeat bottom right,
      linear-gradient(to bottom, white 55%, #00c2e7 45%);
    background-size: 50% auto;
  }

  .calculator-container {
    margin-bottom: 40px;
  }

  .calculator-box {
    margin-top: 16px;
  }

  .output-wrapper,
  .calculator-box input[type='text'] {
    font-size: 26px;
    padding: 0 10px;
  }

  .footer-container {
    margin-bottom: 50px;
  }

  .footer-section {
    background: #000036;
    max-height: unset;
  }

  .logo-img-class {
    /*margin: 10px 0 15px -35px !important;*/
  }

  .default-btn {
    padding: 10px 15px;
  }
}

@media (max-width: 865px) {
  .default-btn {
    margin-top: 0.5rem !important;
  }
}

@media (max-width: 768px) {
  .main-section .row {
    flex-direction: unset;
  }

  .img-box img {
    max-width: 150px;
  }
}

@media (max-width: 576px) {
  #investment-container {
    padding-top: 32px !important;
  }

  .investment-options {
    grid-template-columns: repeat(2, 1fr); /* 2 колонки */
    grid-template-rows: repeat(3, 1fr); /* 3 строки */
    grid-auto-flow: row;
  }

  .investment-card {
    padding: 40px 20px;
  }

  .investment-card h3 {
    color: #1d2a4b;
    text-align: center;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    line-height: 21px; /* 150% */
    letter-spacing: 0.01px;
    text-transform: uppercase;
  }

  .btn-invest {
    color: #ff3823;
    text-align: center;
    font-family: Roboto;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    line-height: 10px; /* 100% */
    letter-spacing: 0.01px;
    text-transform: uppercase;
  }

  .banner {
    padding: 40px 20px;
  }

  .banner-steps {
    flex-direction: column;
  }

  .step {
    padding: 16px;
  }

  .banner-title {
    color: #fff;
    text-align: center;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.01px;
    text-transform: uppercase;
  }

  .video-description {
    margin-top: 20px;
    padding-bottom: 24px;
  }

  .video-description h2 {
    color: #1d2a4b;
    font-family: Roboto;
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%;
    letter-spacing: 0.01px;
    text-transform: uppercase;
    position: relative;
  }

  .video-section .underline {
    width: 100%;
  }

  .content-wrapper {
    display: none;
  }

  .content-wrapper.active {
    display: block;
    margin-top: 10px;
  }

  .toggle-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }

  .toggle-arrow.open {
    transform: rotate(180deg);
  }

  .banner-section {
    background: url(../img/graph-bg-mobile.png) no-repeat center center / cover;
  }

  .banner-section .underline {
    width: 100%;
  }

  .banner-section p {
    color: #929292;
    text-align: center;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 150% */
    letter-spacing: 0.01px;
  }

  .banner-section p br {
    display: none;
  }

  .img-box img {
    max-width: 100px;
  }

  .person-img {
    max-width: 90px;
  }

  .input-box,
  .output-box {
    align-items: center;
    padding: 0;
  }

  .stats-section {
    background: url('../img/stats-bg.png') no-repeat bottom right,
      linear-gradient(to bottom, white 67%, #00c2e7 33%);
    background-size: 50% auto;
  }

  .main-section {
    background-position: -500px center;
  }

  .advantages-section {
    background-size: 100%;
    background-position: left top;
  }

  .output-wrapper,
  .calculator-box input[type='text'] {
    text-align: center;
  }

  .stats-box {
    padding-left: 15%;
  }

  .footer-content {
    gap: 20px;
  }

  .stats-box span {
    font-size: 32px;
  }

  .main-section h1 {
    color: #fff;
    text-align: center;
    font-family: Roboto;
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%; /* 39.2px */
    letter-spacing: 0.01px;
    text-transform: uppercase;
  }

  .main-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .main-text .default-btn {
    line-height: 20px;
  }

  .investment-container {
    margin-top: 0;
  }
}

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

@media (max-width: 340px) {
  .investment-card h3 {
    font-size: 12px;
  }

  .main-text .default-btn {
    font-size: 12px;
  }

  .main-section h1 {
    font-size: 22px;
  }

  .scroll-button {
    margin-top: 10px;
  }

  h2,
  h4 {
    font-size: 20px !important;
  }

  .output-wrapper,
  .calculator-box input[type='text'] {
    font-size: 16px;
  }
}

@media (min-width: 819px) {
  .background-content-desktop {
    display: flex !important;
    width: 100%;
  }
  .background-content-mobile {
    display: none !important;
  }
  .mobile-content {
    display: none !important;
  }
}

@media (max-width: 818px) {
  .desktop-content {
    display: none !important;
  }

  .background-content-mobile {
    display: flex !important;
    position: relative;
    overflow: hidden;
  }

  .video-background-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .video-background-mobile video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .background-content-desktop {
    display: none !important;
  }

  .background-content-mobile {
    background-image: url('../img/background.png');
  }

  .content-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;

    width: 100%;
    text-align: center;
    padding: 50px 100px 50px 25px;
    z-index: 999;
  }

  .logo-img-class {
    /*margin: 30px 0 30px -35px !important;*/
  }

  .start-page__header {
    font-size: 18px;
    margin-bottom: 15px;
  }

  p {
    font-size: 16px;
  }

  .default-btn {
    margin-top: 2rem !important;
  }
}

.custom-text-style-1 {
  text-align: left;
  margin: 0;
  padding-left: 0;
  word-break: break-word;
}

.start-page_has_bg.start-page_theme_expanded .start-page__line {
  width: 120px;
  background-color: #ffffff;
}

.background-content-desktop,
.background-content-mobile {
  display: none;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.background-img {
  width: 100%;
  max-height: 900px;
}

.start-page__body__right {
  max-width: 523px;
}

.start-page__body__left {
  max-width: 640px;
}

/*Animation*/

.start-page__line-animate {
  width: 100%;
  height: 2px;
  background-color: #000;
  margin-bottom: 15px;
}
.img-animate {
  max-width: 100%;
  height: auto;
  transition: opacity 1s ease-in-out;
}
.h1-animate {
  font-size: 22px;
  text-transform: none !important;
  transition: opacity 1s ease-in-out;
}
.hidden-animate {
  opacity: 0;
}
.visible-animate {
  opacity: 1;
}

.page-content {
  display: flex;
  flex-direction: column;
}

.reviews-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 25px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.5));

  height: 430px;
}

.dynamic-text-mobile {
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.2;
  letter-spacing: normal;
  color: var(--color-bg-text, #020202);
  margin-bottom: 1rem;
}

.attention-timer-wrapper {
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.attention-timer {
  display: flex;
  flex-direction: column;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: #cf161c;
}

.start-page__content__right {
  flex-direction: row !important;
}

.attention-timer__side-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
}

.attention-timer__text-1 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.attention-timer__text-2 {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}

.attention-timer__side-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 15px 0;
}

.timer-item__content {
  display: flex;
  gap: 5px;
}

.timer-item__content__child {
  border-radius: 2px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 35px;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}

.attention-timer__side-2__content {
  display: flex;
  gap: 5px;
}

.timer-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.start-page__content__left {
  max-width: 55%;
}

.content-container-wrapper {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.header-section {
  min-height: 224px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 25px;
}

.header-section__text {
  color: #024975;
  font-size: 44px;
  font-weight: 700;
  line-height: 53.46px;
  text-align: center;
}

.main-selection {
  position: relative;
}

.main-selection__child {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 25px 80px 25px 80px;
}

.commonInputDiv.rules label {
  display: flex;
  align-items: center;
}
.commonInputDiv.rules {
  margin: 20px auto;
  color: #717171;
  font-size: 14px;
  font-weight: 400;
}
.commonInputDiv.rules label input {
  display: block;
  -webkit-appearance: checkbox;
  width: 16px;
  height: 16px;
  margin: 0 10px 0 0;
}

.commonInputDiv input {
  background: #ededed;
}

.leadSubmit,
.codeSubmit {
  background-color: #f0b90b;
  width: 100%;
  padding: 10px 0;

  margin-top: 25px;

  color: rgba(34, 34, 34, 1);
  font-size: 24px;
  font-weight: 600;

  cursor: pointer;
  border: none;
  transition-duration: 0.3s;
  border-radius: 8px;
}

.leadSubmit:hover,
.codeSubmit:hover {
  background-color: #c29913;
}

.leadSubmit[disabled] {
  /*opacity: 0.5;*/
  /*pointer-events: none;*/
  /*cursor: not-allowed;*/
  /*filter: grayscale(1);*/
}

.custom-checkbox {
  display: flex;
  gap: 5px;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkmark {
  width: 36px;
  height: 23px;
  border: 2px solid #d4d4d4;
  border-radius: 4px;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

.custom-checkbox input:checked + .checkmark {
  background-color: #ededed;
  border-color: #d4d4d4;
}

.custom-checkbox input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.imgs-after-form {
  width: 100%;
  display: flex;
  justify-content: center;
}

.red-back {
  background: #f94239;
  width: 45%;
  height: 100%;
  position: absolute;
}

.second-selection {
  background: #bce7ff;
  display: flex;
  justify-content: space-around;
  padding: 75px;
}

.second-selection__child {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 0 50px;
}

.second-selection__child-center {
  border-left: 1px solid #02497533;
  border-right: 1px solid #02497533;
}

.second-selection__text {
  font-size: 18px;
  font-weight: 500;
  color: #024975;
}

.third-selection {
  display: flex;
  gap: 75px;
}

.third-selection__text1 {
  color: #343248;
  font-size: 34px;
  font-weight: 700;
}

.third-selection__text2 {
  color: #343248;
  font-size: 20px;
  font-weight: 400;
}

.third-selection {
  padding: 0 100px;
}

.third-selection__titles {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.third-selection__left-side {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 25px 0;
}

.third-selection__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.third-selection__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.third-selection__item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.third-selection__item__texts {
  display: flex;
  flex-direction: column;
}

.third-selection__item__texts__text1 {
  color: #343248;
  font-size: 24px;
  font-weight: 700;
}

.third-selection__item__texts__text2 {
  color: #343248;
  font-size: 16px;
  font-weight: 400;
}

.third-selection__btn-wrapper {
  width: 100%;
}

.third-selection__btn {
  background: #f94239;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 35px;
  border-radius: 8px;
  border: 0;
}

.third-selection__btn:hover {
  background: #d8322a;
}

.video-arrow {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  transition: background-color 0.1s ease;
}

.video-arrow:hover {
  background-color: rgba(255, 255, 255, 0.55);
}

.slider-container {
  width: 100%;
  padding-top: 25px;
}

#investmentSlider1 {
  width: 100%;
}

#investmentSlider2 {
  width: 100%;
}

.slider-container__summ {
  display: flex;
  justify-content: space-between;
}

.control-panel__left-block {
  color: #000;
  font-size: 32px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #bebebe;
  padding: 25px 50px;
}

.control-panel__right-block {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #bebebe;
  padding: 25px 50px;
  background: #09ba2f;
}

#investmentSlider1 {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #d9d9d9;
  border-radius: 5px;
  outline: none;
  position: relative;
  transition: background 0.3s ease;
}

#investmentSlider2 {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #d9d9d9;
  border-radius: 5px;
  outline: none;
  position: relative;
  transition: background 0.3s ease;
}

#investmentSlider1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #dc2186;
  border-radius: 5px;
  width: var(--slider-progress1, 0);
  z-index: 1;
}

#investmentSlider2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #dc2186;
  border-radius: 5px;
  width: var(--slider-progress2, 0);
  z-index: 1;
}

#investmentSlider1::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d9d9d9;
  border: 6px solid #fff;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

#investmentSlider2::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d9d9d9;
  border: 6px solid #fff;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

#investmentSlider1:hover {
  background: #bbb;
}

#investmentSlider2:hover {
  background: #bbb;
}

#investmentSlider1:focus {
  background: #bbb;
}

#investmentSlider2:focus {
  background: #bbb;
}

#investmentSlider1::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #f94239;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

#investmentSlider2::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #f94239;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.selection-4 {
  background: #bce7ff;
  display: flex;
}

.selection-4__texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  padding: 50px 100px;
}

.selection-4__text1 {
  color: #024975;
  font-size: 32px;
  font-weight: 700;
}

.selection-4__text2 {
  color: #024975;
  font-size: 24px;
  font-weight: 400;
}

.selection-5__titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.selection-5__title1 {
  color: #f94239;
  font-size: 34px;
  font-weight: 700;
}

.selection-5__title2 {
  color: #343248;
  font-size: 20px;
}

.selection-5 {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.selection-5__texts {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #0000001a;
}

.selection-5__text1 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

.selection-5__text2 {
  color: #f94239;
  font-size: 20px;
  font-weight: 700;
}

.selection-5__text3 {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.selection-5__items {
  display: flex;
  gap: 25px;
  padding: 0 100px 50px 100px;
}

.selection-5__item {
  display: flex;
  width: 33.33%;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0 10px 20px 0 #00000026;
  padding: 35px 25px;
}

.video-block1 {
  display: flex;
  justify-content: center;
}

.selection-6 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.selection-6__left-side {
  padding: 0 0 0 100px;
}

.selection-7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 50px 25px;
}

.selection-7__title {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  text-align: center;
}

.selection-7__items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 70%;
  cursor: pointer;
}

.selection-7__item-red {
  background: #17161a;
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  padding: 20px 15px;
}

.selection-7__item-red__texts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.selection-7__item-red__text1 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.selection-7__item-red__text2 {
  font-size: 16px;
  color: #fff;
  display: none;
}

.selection-7__img-minus {
  height: 100%;
  cursor: pointer;
}

.selection-7__img-plus {
  cursor: pointer;
}

.selection-7__item__text {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
}

.selection-7__item__text__active {
  color: #fff;
}

.active {
}

.selection-7__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #dc2186;
  border-radius: 20px;
  padding: 20px 15px 18px 15px;
  background: #17161a;
}

.selection-8 {
  /*background-image: url('../images/back2.png');*/
  /*background-repeat: no-repeat;*/
  /*background-size: cover;*/
  /*background-position: center;*/
  /*background-color: #f5f5f5;*/
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 75px 25px 50px 25px;
  background-color: #f5f5f5;
  overflow: hidden;
  z-index: 1;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: -1;
}

.selection-8__title {
  color: #024975;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
}

.selection-8 .form-wrapper {
  background: #fff;
  max-width: none;
}

.selection-8 .form-inputs {
  display: flex;
  gap: 10px;
}

.selection-8 .form-container {
  width: auto;
}

.selection-8 .leadSubmit,
.codeSubmit {
  width: auto;
  padding: 0 25px;

  margin-top: 0;
  margin-left: 10px;
}

.selection-8 .form-control {
  margin-bottom: 0;
}

.selection-8 .checkmark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.selection-8 .custom-checkbox input:checked + .checkmark::after {
  left: 10px;
  top: 4px;
  width: 7px;
  height: 13px;
}

.selection-8 .rules-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selection-8 .imgs-after-form {
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
  width: auto;
}

.iti__country-list {
  max-height: 300px !important;
  overflow-y: auto !important;
  z-index: 10000 !important;
}

.form-text {
  max-width: 440px;
}

.koc-footer-logo {
  width: 235px;
  height: 45px;
}

.footer-selection__2 {
  display: flex;
  padding-top: 25px;
}

.footer-selection__2__2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 54%;
}

.copyright {
  color: #fff;
}

.free-span {
  width: 46%;
}

.footer-selection {
  padding: 50px 100px 25px 100px;
  background: #f04e23;
}

.footer-selection__1 {
  background: #fae5e0;
  border-radius: 25px;
  padding: 10px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.yellow-img {
  width: 40px;
  height: 40px;
}

.footer-selection__title {
  font-size: 24px;
  font-weight: 700;
  padding-top: 10px;
}

.footer-selection__text1 {
  font-size: 18px;
  font-weight: 500;
  padding-top: 25px;
}

.black-text {
  font-weight: 700;
}

.red-text {
  color: #f04e23;
  cursor: pointer;
}

.footer-selection__text2 {
  font-size: 18px;
  font-weight: 700;
  padding-top: 35px;
}

.header-selection1 {
  width: 100%;
  background: #38bff9;
  text-align: center;
  padding: 10px 25px;
}

.header-selection1 {
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.header-selection2__item__text1 {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.header-selection2__item__text2 {
  color: #e97f4f;
  font-size: 18px;
  font-weight: 700;
}

.header-selection2__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header-selection2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
  padding: 25px;
}

.header-selection2__row {
  display: flex;
  gap: 30px;
}

.title-selection {
  padding: 25px;
  text-align: center;
}

.title-selection__text {
  font-size: 42px;
  font-weight: 600;
  color: #fff;
}

.orange-color {
  color: #e97f4f;
}

.video-selection {
  padding: 25px 100px;
}

.video-selection__wrapper {
  display: flex;
  padding: 25px;
  border: 2px solid #dc2186;
  border-radius: 20px;
  background: #000;
  position: relative;
}

@media (max-width: 767px) {
  .video-selection__wrapper {
    padding: 10px 0;
    overflow: hidden;
  }
}
.form-title {
  color: #e97f4f;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}

.video-container {
  width: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #091622;
  max-height: 400px;
  overflow: hidden;
}

.video-container-styled {
  width: 100%;
  height: 400px;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16 / 9;
}

@media (max-width: 767px) {
  .video-container-styled {
    max-height: 200px;
    aspect-ratio: 16 / 9;
  }
}

.form-wrapper {
  width: 35%;
  display: flex;
  justify-content: center;
}

.heading-wrapper {
  padding-bottom: 25px;
}

.form-btn {
  background: #38bff9;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  border-radius: 8px;
  border: none;
  padding: 10px 20px;
  margin-top: 15px;
}

.form-btn:hover {
  background: #5acdff;
}

.crypto-icon {
  position: absolute;
  top: -55px;
  right: -50px;
  width: 130px;
  height: 130px;
}

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

.form-wrapper form {
  width: 100%;
  padding: 0 0 0 25px;
}

.main-btn {
  background: #38bff9;
  color: #17161a;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  max-width: 409px;
  border-radius: 8px;
  border: none;
  padding: 10px 20px;
  margin-top: 15px;
}

.main-btn:hover {
  background: #5acdff;
}

.selection-info-1__left-side__text {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
}

.selection-info-1__right-side__text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.selection-info-1 {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 100px;
}

.selection-info-1__left-side {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.selection-info-1__right-side {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.calc-selection {
  padding: 25px 100px;
}

.calc-wrapper {
  padding: 25px 40px;
  border: 2px solid #7c56d6;
  display: flex;
  flex-direction: column;
  gap: 25px;
  border-radius: 20px;
  background: #17161a;
  position: relative;
}

.calc-wrapper::before,
.calc-wrapper::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  background-size: contain;
  background-repeat: no-repeat;
}

.calc-wrapper::before {
  background-image: url('../img/Bitcoin.png');
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.calc-wrapper::after {
  background-image: url('../img/Etherium.png');
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

.calc-wrapper__title {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}

.calc-data {
  border: 1px solid #dc2186;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  min-width: 200px;
}

.calc-data__text1 {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.calc-data__text2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.input-val-text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.calc-main-side__1 {
  display: flex;
  align-items: center;
}

.calc-main-side__2 {
  display: flex;
  align-items: center;
}

.calc-main-side {
  display: flex;
}

.calc-main-side__1-wrapper {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-main-side__2-wrapper {
  width: 30%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.range-wrapper {
  width: 100%;
  padding: 0 25px;
}

.range-wrapper__values {
  display: flex;
  justify-content: space-between;
}

.client-reviews__title {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
}

.client-reviews {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 100px;
}

.client-reviews__slider-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.slide-wrapper {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #b2b2b2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.slide-wrapper__text-review {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.slide-wrapper__1-side__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.slide-wrapper__1-side {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  gap: 25px;
}

.client-name {
  color: #fff;
}

/* Custom Form Styles */
.custom-form {
  padding: 30px;
  border-radius: 15px;
  margin: 0 auto;
}

.custom-form h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 600;
}

.custom-form .form-group {
  margin-bottom: 20px;
}

.custom-form input {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.custom-form input:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.custom-form input::placeholder {
  color: #666;
}

.custom-form .submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.custom-form .submit-btn:active {
  transform: translateY(0);
}

.custom-form .error-message {
  color: #ff4757;
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid #ff4757;
  border-radius: 5px;
  padding: 10px;
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .custom-form {
    padding: 20px;
    margin: 0 15px;
  }

  .custom-form h3 {
    font-size: 20px;
  }

  .custom-form input,
  .custom-form .submit-btn {
    padding: 12px;
    font-size: 14px;
  }
  font-size: 20px;
  font-weight: 600;
}

.client-review {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.stars {
  display: flex;
  gap: 5px;
}

/*///////////////////////////////////////////*/

.slides-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide-wrapper.center {
  transform: scale(1);
  opacity: 1;
}

.slide-wrapper.left,
.slide-wrapper.right {
  transform: scale(0.8);
  opacity: 0.5;
}

.slide-wrapper {
  height: auto;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #b2b2b2;
  opacity: 0.5;
  transform: scale(0.8);
  transition: transform 0.5s, opacity 0.5s;
  background: #17161a;
}

.slide-wrapper.center {
  transform: scale(1);
  opacity: 1;
}

.slide-wrapper.hidden {
  display: none;
}

.mob-arrows {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.selection-smart-bit-boost {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 50px 100px;
}

.selection-smart-bit-boost__title1 {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  max-width: 711px;
}

.selection-smart-bit-boost__title2 {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  max-width: 711px;
}

.selection-smart-bit-boost__items {
  display: flex;
  gap: 20px;
  width: 100%;
}

.selection-smart-bit-boost__item__text1 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.selection-smart-bit-boost__item__text2 {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.selection-smart-bit-boost__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 10px;
  border: 2px solid #7c56d6;
  border-radius: 20px;
  width: 25%;
  background: #17161a;
}

.selection-smart-bit-boost__item__img-wrapper {
  width: 100%;
}

.selection-main-btn {
  display: flex;
  justify-content: center;
  padding: 0 25px 50px 25px;
}

.selection-points {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  padding: 50px 100px;
}

.selection-points__title {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
}

.selection-points__numbers {
  display: flex;
  justify-content: space-around;
}

.number1 {
  margin-left: 55px;
}

.selection-points__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.selection-points__texts__item__text1 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.selection-points__texts__item__text2 {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.selection-points__texts__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 274px;
}

.selection-points__texts {
  display: flex;
  justify-content: space-around;
  gap: 15px;
}

.selection-points-mob {
  display: flex;
  gap: 25px;
  padding: 50px 25px;
}

.selection-points-mob__points {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.selection-points-mob__points__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.selection-last {
  display: flex;
  gap: 20px;
  padding: 50px 100px;
}
.selection-last > * {
  width: 50%;
}
@media (max-width: 1080px) {
  .selection-last > * {
    width: 100%;
  }
}

.selection-last__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 25px 50px 50px 25px;
  background: #17161a;
  border: 2px solid #7c56d6;
  border-radius: 20px;
}

.selection-last__info__text1 {
  color: #e97f4f;
  font-size: 32px;
  font-weight: 600;
}
.selection-last__info__text2 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.selection-last__info__text3 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.form-wrapper-2 {
  background: #17161a;
  width: 100%;
  border: 2px solid #dc2186;
  border-radius: 20px;
  padding: 30px;
}

.form-wrapper-2 form {
  padding: 0;
}

button {
  text-transform: uppercase;
}

@media (min-width: 931px) {
  .mob-arrows {
    display: none;
  }
  .selection-points-mob {
    display: none;
  }
}

@media (max-width: 1080px) {
  .client-reviews {
    padding: 50px 25px;
  }
  .selection-7__items {
    width: 100%;
  }
}

@media (max-width: 930px) {
  .selection-last__info__text1 {
    font-size: 24px;
  }
  .selection-last__info__text2 {
    font-size: 14px;
  }
  .selection-last__info__text3 {
    font-size: 14px;
  }
  .selection-7__title {
    font-size: 24px;
  }
  .selection-7__item__text {
    font-size: 16px;
  }
  .selection-7__item-red__text2 {
    font-size: 14px;
  }
  .selection-last {
    display: flex;
    flex-direction: column;
    padding: 50px 25px;
  }
  .selection-points__title {
    display: none;
  }
  .selection-points {
    display: none;
    padding: 50px 25px;
  }
  .selection-smart-bit-boost__items {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: hidden;
    justify-content: center;
  }

  .selection-smart-bit-boost__item {
    width: 90%;
  }
  .selection-smart-bit-boost__item__text1 {
    font-size: 16px;
  }
  .selection-smart-bit-boost__item__text2 {
    font-size: 12px;
  }
  .selection-smart-bit-boost__title1 {
    font-size: 24px;
  }
  .selection-smart-bit-boost__title2 {
    font-size: 12px;
  }
  .selection-smart-bit-boost {
    padding: 50px 25px;
  }
  .slide-wrapper {
    width: 100%;
  }
  .desk-arrow {
    display: none;
  }
  .logo-img {
    width: 108px;
    height: 30px;
  }
  .header-selection2__item__text1 {
    color: #fff;
    font-size: 8px;
    font-weight: 400;
  }

  .header-selection2__item__text2 {
    color: #e97f4f;
    font-size: 12px;
    font-weight: 700;
  }
  .title-selection__text {
    font-size: 24px;
  }
  .video-selection {
    padding: 25px;
  }
  .selection-info-1 {
    padding: 50px 25px;
  }
  .calc-selection {
    padding: 25px;
  }
  .calc-wrapper::before,
  .calc-wrapper::after {
    display: none;
  }
  .crypto-icon {
    display: none;
  }
  .client-reviews {
    padding: 50px 25px;
  }
}

@media (max-width: 768px) {
  .client-reviews__title {
    font-size: 24px;
  }
  .video-selection__wrapper {
    flex-direction: column;
  }
  .video-container {
    width: 100%;
  }
  .form-wrapper {
    width: 100%;
    margin-top: 25px;
  }
  .form-title {
    font-size: 20px;
  }
  .selection-info-1 {
    flex-direction: column;
  }
  .selection-info-1__left-side {
    align-items: center;
  }
  .selection-info-1__left-side__text {
    font-size: 20px;
  }
  .calc-main-side__1 {
    flex-direction: column;
    gap: 15px;
  }
  .calc-main-side__2 {
    flex-direction: column;
    gap: 15px;
  }
  .calc-data__text1 {
    font-size: 8px;
  }
  .calc-wrapper__title {
    font-size: 24px;
  }
  .calc-data__text2 {
    font-size: 20px;
  }
  .calc-main-side {
    flex-direction: column;
    gap: 20px;
  }
  .calc-main-side__1-wrapper {
    width: 100%;
  }
  .calc-main-side__2-wrapper {
    width: 100%;
  }
  .calc-data {
    padding: 5px 15px;
  }
  .calc-data-main {
    padding: 20px 25px !important;
  }
}

/*@media (max-width: 1600px) {*/
/*    .start-page__content__right {*/
/*        width: 48% !important;*/
/*    }*/
/*}*/

/*@media (max-width: 1280px) {*/
/*    .start-page__content__right {*/
/*        width: 60% !important;*/
/*    }*/
/*    .start-page__content__left {*/
/*        max-width: 35%;*/
/*    }*/
/*    .calc-side {*/
/*        width: 80%;*/
/*    }*/
/*    .bg-image {*/
/*        height: 100%;*/
/*    }*/
/*}*/

/*@media (max-width: 1080px) {*/
/*    .selection-7__items {*/
/*        width: 100%;*/
/*    }*/
/*    .selection-6 {*/
/*        flex-direction: column;*/
/*        justify-content: center;*/
/*        padding: 50px 25px;*/
/*    }*/
/*    .selection-6__left-side {*/
/*        padding: 25px;*/
/*    }*/
/*    .selection-5__items {*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*        padding: 0 25px 50px 25px;*/
/*    }*/
/*    .selection-5__item {*/
/*        width: 100%;*/
/*    }*/
/*    .selection-5__titles {*/
/*        padding: 25px 25px 0 25px;*/
/*        text-align: center;*/
/*    }*/
/*    .selection-5__title1 {*/
/*        color: #F94239;*/
/*        font-size: 24px;*/
/*        font-weight: 700;*/
/*    }*/

/*    .selection-5__title2 {*/
/*        color: #343248;*/
/*        font-size: 14px;*/
/*    }*/

/*    .selection-5__text3 {*/
/*        color: #000;*/
/*        font-size: 14px;*/
/*        font-weight: 400;*/
/*    }*/
/*    .main-selection__child {*/
/*        flex-direction: column;*/
/*        padding: 0;*/
/*    }*/
/*    .video-block {*/
/*        width: 100%;*/
/*        display: flex;*/
/*        justify-content: center;*/
/*        padding: 25px 15px;*/
/*        background: #F94239;*/
/*    }*/
/*    .form-container {*/
/*        width: 100%;*/
/*        display: flex;*/
/*        justify-content: center;*/
/*        padding: 25px;*/
/*    }*/
/*    .red-back {*/
/*        display: none;*/
/*        !*width: 70%;*!*/
/*        !*height: 51%;*!*/
/*    }*/
/*    .form-wrapper {*/
/*        max-width: none;*/
/*    }*/
/*    .selection-4 {*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*    }*/
/*    .selection-4__text1 {*/
/*        font-size: 20px;*/
/*    }*/

/*    .selection-4__text2 {*/
/*        font-size: 14px;*/
/*    }*/

/*    .man-info-img {*/
/*        max-width: 550px;*/
/*    }*/

/*    .selection-4__texts {*/
/*        padding: 50px 25px;*/
/*    }*/
/*}*/

/*@media (max-width: 880px) {*/
/*    .footer-selection {*/
/*        padding: 50px 25px 25px 25px;*/
/*    }*/
/*    .free-span {*/
/*        width: 44%;*/
/*    }*/
/*    .footer-selection__2__2 {*/
/*        width: 56%;*/
/*    }*/
/*    .koc-footer-logo {*/
/*        width: 180px;*/
/*        height: 34px;*/
/*    }*/
/*    .start-page__content__right {*/
/*        width: 67% !important;*/
/*    }*/
/*    .start-page__content__left {*/
/*        max-width: 25%;*/
/*    }*/
/*    .h1-animate {*/
/*        font-size: 18px !important;*/
/*    }*/
/*    .selection-8 .form-inputs {*/
/*        flex-direction: column;*/
/*        gap: 15px;*/
/*    }*/
/*    .selection-8 .leadSubmit, .codeSubmit {*/
/*        padding: 10px 25px;*/
/*        margin-left: 0;*/
/*        margin-top: 15px;*/
/*    }*/
/*    .selection-8 .rules-wrapper {*/
/*        flex-direction: column;*/
/*        gap: 20px;*/
/*        align-items: center;*/
/*    }*/
/*    .selection-8 .imgs-after-form {*/
/*        width: 100%;*/
/*        justify-content: flex-start;*/
/*    }*/
/*    .selection-8 .form-container {*/
/*        padding: 0;*/
/*    }*/
/*    .selection-8 {*/
/*        width: auto;*/
/*    }*/
/*}*/

/*@media (max-width: 818px) {*/
/*    .calc-selection {*/
/*        display: none;*/
/*    }*/
/*    .attention-timer-wrapper {*/
/*        justify-content: flex-end;*/
/*        padding: 0 0 25px 0;*/
/*    }*/
/*    .attention-timer {*/
/*        width: 40%;*/
/*        !*margin-bottom: -150px;*!*/
/*        z-index: 999;*/
/*    }*/
/*    .second-selection{*/
/*        flex-direction: column;*/
/*        padding: 25px;*/
/*    }*/
/*    .second-selection__child {*/
/*        flex-direction: column;*/
/*        padding: 15px 0;*/
/*    }*/
/*    .second-selection__child-center {*/
/*        border-left: 0;*/
/*        border-right: 0;*/
/*        border-top: 1px solid #02497533;*/
/*        border-bottom: 1px solid #02497533;*/
/*    }*/
/*    .second-selection__text {*/
/*        font-size: 14px;*/
/*    }*/
/*    .third-selection {*/
/*        flex-direction: column;*/
/*        padding: 0 25px;*/
/*        align-items: center;*/
/*    }*/
/*    .third-selection__text1 {*/
/*        font-size: 24px;*/
/*    }*/
/*    .third-selection__text2 {*/
/*        font-size: 14px;*/
/*    }*/
/*    .third-selection__item__texts__text1 {*/
/*        font-size: 18px;*/
/*    }*/
/*    .third-selection__item__texts__text2 {*/
/*        font-size: 14px;*/
/*    }*/
/*    .third-selection__left-side {*/
/*        width: 100%;*/
/*        align-items: center;*/
/*    }*/
/*    .third-selection__titles {*/
/*        text-align: center;*/
/*    }*/
/*    .third-selection__btn-wrapper {*/
/*        display: flex;*/
/*        justify-content: center;*/
/*    }*/
/*}*/

/*@media (max-width: 767px) {*/
/*    .header-section__text {*/
/*        font-size: 32px;*/
/*        line-height: 38.88px;*/
/*    }*/
/*}*/

/*@media (max-width: 550px) {*/
/*    .selection-8 .checkmark {*/
/*        width: 34px;*/
/*        height: 25px;*/
/*        border-radius: 6px;*/
/*    }*/
/*    .selection-8 .custom-checkbox input:checked + .checkmark::after {*/
/*        left: 8px;*/
/*        top: 2px;*/
/*    }*/
/*    .copyright {*/
/*        display: none;*/
/*    }*/
/*    .footer-selection__2__2 {*/
/*        justify-content: flex-end;*/
/*    }*/
/*    .header-section {*/
/*        width: auto;*/
/*    }*/
/*}*/

@media (max-width: 500px) {
  .selection-7 {
    justify-content: center;
    padding: 0 25px;
  }
  .footer-selection {
    height: 575px;
  }
  .main-selection {
    padding-bottom: 50px;
  }
}

@media (max-width: 400px) {
  .selection-8 {
    margin-top: -50px;
  }
  .selection-7 {
    margin-top: 50px;
  }
}
