select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../img/icons/arrow-up.svg") no-repeat right 16px center, #fff;
  padding-right: 32px;
  background-size: 24px;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  max-width: 390px;
  margin-inline: auto;
}

.container {
  padding: 0 16px;
}

.marquee-container {
  /* Hide content outside the container's bounds */
  overflow: hidden;
  /* Set a fixed height for the marquee area */
  background: #de1111;
  padding: 10px;
  /* Display flex for alignment */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2vh;
    width: 100%;
}

.marquee-content {
  /* Ensures the content stays on one line */
  white-space: nowrap;
  /* The total width needs to be sufficient to hold both copies of the content */
  display: inline-block;
  /* Apply the animation */
  -webkit-animation: marquee 50s linear infinite;
          animation: marquee 50s linear infinite; /* Adjust time for speed */
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
}

/* Optional: Pause animation on hover */
.marquee-container:hover .marquee-content {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

/* Define the scrolling animation */
@-webkit-keyframes marquee {
  /* Start with the first content copy fully visible */
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /* End when the first copy is completely off-screen to the left, revealing the second copy seamlessly */
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes marquee {
  /* Start with the first content copy fully visible */
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /* End when the first copy is completely off-screen to the left, revealing the second copy seamlessly */
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
}

.warning {
  border: 1px solid #999;
  padding: 12px 0;
  background: #f5f5f5;
}
.warning .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.warning__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.warning__upper::after {
  content: "";
  border: 1px solid #d7d7d7;
  width: 312px;
  height: 0px;
  margin: 8px 0;
}
.warning__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.warning__title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #1f1f1f;
}
.warning__text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  color: #696969;
}

.video {
  width: 100%;
}

.check .container {
  margin-top: 40px;
}
.check__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  color: #00467f;
  margin-bottom: 12px;
}
.check__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #696969;
}

.btn {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: #fee9e7;
  border: 1px solid #c00f0c;
  text-align: center;
  border-radius: 8px;
  padding: 12px;
  background: #ec221f;
  width: 100%;
  margin-top: 24px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn:hover {
  background: #a11715;
}

.partners__title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 120%;
  text-align: center;
  color: #1f1f1f;
}
.partners__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.partners__box::before {
  content: "";
  border: 1px solid #d7d7d7;
  width: 312px;
  height: 0px;
  margin: 8px 0 16px;
}

.comment {
  padding: 0 16px;
}
.comment .container {
  border: 1px solid #b7b7b7;
  border-radius: 16px;
  background: #f6f6f6;
  padding: 8px 8px 40px;
}
.comment__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.comment__aside {
  width: 100%;
  max-width: 24px;
  margin-right: 5px;
}
.comment__article {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #393939;
}
.comment__quote {
  margin-bottom: 12px;
}
.comment__list {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #001a2d;
  margin-top: 12px;
}
.comment__list li {
  border-left: 1.5px solid #00467f;
  padding: 12px 0px 12px 8px;
  background: #cce6fb;
  margin-bottom: 12px;
}
.comment__text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #393939;
}
.comment__text-blue {
  font-weight: 600;
  color: #00467f;
}
.comment__box {
  margin-top: 12px;
}
.comment__btn {
  margin-top: -20px;
  margin-bottom: 16px;
}

.user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  margin-bottom: 12px;
}
.user img {
  width: 40px;
  height: 40px;
}
.user__name {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #252525;
}
.user__job {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: #b3b3b3;
}

.box-comment {
  border-radius: 0 0 4px 4px;
}
.box-comment__title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  padding: 6px 12px;
  background: #db8a09;
  border-radius: 4px 4px 0 0;
}
.box-comment__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #db8a09;
  border-radius: 0 0 4px 4px;
  padding: 8px 12px;
}
.box-comment__check {
  border-left: 1px solid #db8a09;
  border-right: 1px solid #db8a09;
  background: #fff9f0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-transform: uppercase;
  text-align: center;
  color: #db8a09;
  width: 100%;
}
.box-comment__list {
  border: 1px solid #a87a4d;
  border-radius: 4px;
  padding: 8px;
  background: #fff9f0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #3f2803;
}
.box-comment__list li {
  list-style-type: disc;
  margin-left: 20px;
}