button.primary {
  border: none;
  border-radius: 8px;
  padding: 14px 21px;
  color: #ffffff;
  background-color: #30ade7;
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 425px) {
  button.primary {
    padding: 16px 24px;
  }
}
button.primary:hover {
  cursor: pointer;
  background-color: #2793C5;
}

.navbar {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 425px) {
  .navbar {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media screen and (min-width: 1313px) {
  .navbar {
    width: 1217px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #ffffff;
}
.navbar .logo {
  width: 135px;
  object-fit: cover;
}
@media screen and (min-width: 425px) {
  .navbar .logo {
    width: 176px;
  }
}
.navbar .anchors {
  position: absolute;
  top: 60px;
  left: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 16px 0;
  background-color: #ffffff;
}
.navbar .anchors.show {
  display: flex;
}
.navbar .anchors.show li {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}
.navbar .anchors.show li:hover {
  background-color: #f1f5f9;
}
@media screen and (min-width: 930px) {
  .navbar .anchors {
    position: relative;
    top: unset;
    left: unset;
    width: auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    list-style: none;
  }
}
.navbar .anchors a {
  font-family: "REM Bold", sans-serif;
  text-decoration: none;
  color: #0d3d53;
}
.navbar .anchors a:hover {
  cursor: pointer;
}
.navbar .menu-button {
  display: block;
  color: #30ade7;
}
@media screen and (min-width: 930px) {
  .navbar .menu-button {
    display: none;
  }
}
.navbar .menu-button:hover {
  cursor: pointer;
}

.hero {
  background-color: #f1f5f9;
}
.hero .container {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 425px) {
  .hero .container {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media screen and (min-width: 1313px) {
  .hero .container {
    width: 1217px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.hero .container {
  display: flex;
  gap: 24px;
}
.hero .container .descriptions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 0;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .hero .container .descriptions {
    width: 50%;
  }
}
.hero .container .descriptions .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #0d3d53;
  text-align: center;
}
.hero .container .descriptions .wrapper span {
  color: #30ade7;
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  .hero .container .descriptions .wrapper span {
    font-size: 48px;
  }
}
.hero .container .descriptions video {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.hero .container .descriptions button {
  width: 100%;
}
.hero .container .hero-image {
  display: none;
}
@media screen and (min-width: 1024px) {
  .hero .container .hero-image {
    display: flex;
    align-items: flex-end;
    padding: 0 32px;
    width: 50%;
  }
  .hero .container .hero-image img {
    width: 100%;
    object-fit: cover;
  }
}

.partners {
  background: #ffffff;
  padding: 148px 48px;
  text-align: center;
}

.partners h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0e3b4a;
  margin-bottom: 32px;
}

.partners-logos {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  overflow-x: auto;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
  max-width: 1200px;
  margin: 0 auto;
}

.partners-logos::-webkit-scrollbar {
  display: none;
}

.partners-logos img {
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}

.partners-logos img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.1) rotate(2deg);
}

@media (max-width: 1024px) {
  .partners-logos {
    max-width: 90%;
  }
}
@media (max-width: 710px) {
  .partners {
    padding: 80px 0;
  }
  .partners h2 {
    font-size: 21px;
    max-width: 205px;
    margin-left: auto;
    margin-right: auto;
  }
  .partners-logos {
    /* justify-content: flex-start; */
    gap: 40px;
    padding: 10px 20px;
    max-width: none;
  }
  .partners-logos img {
    height: 48px;
  }
}
.about-app {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 425px) {
  .about-app {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media screen and (min-width: 1313px) {
  .about-app {
    width: 1217px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.about-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 56px;
  padding-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .about-app {
    flex-direction: row;
  }
}
.about-app .items,
.about-app .image-box {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .about-app .items,
  .about-app .image-box {
    width: 50%;
  }
}
.about-app .items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .about-app .items {
    gap: 32px;
  }
}
.about-app .items h2 {
  color: #0d3d53;
}
.about-app .items h2 strong {
  color: #30ade7;
  font-size: 21px;
  font-family: "REM Bold", sans-serif;
}
@media screen and (min-width: 768px) {
  .about-app .items h2 strong {
    font-size: 32px;
  }
}
.about-app .items ul {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .about-app .items ul {
    gap: 24px;
  }
}
.about-app .items ul li {
  width: 100%;
  display: flex;
  gap: 16px;
  color: #727e84;
}
.about-app .items ul li div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  border-radius: 50%;
  background-color: #30d043;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .about-app .items ul li div {
    min-width: 32px;
    min-height: 32px;
    width: 32px;
    height: 32px;
  }
}
.about-app .items ul li div .list-icon {
  color: #ffffff;
  width: 14px;
  height: 14px;
}
@media screen and (min-width: 1024px) {
  .about-app .image-box {
    padding: 24px 56px;
    max-height: 550px;
  }
}
.about-app .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-section {
  background: #F1F5F9;
  padding: 140px 64px;
  text-align: center;
}

.benefits-title {
  font-size: 32px;
  font-weight: 800;
  color: #0e3b4a;
  margin-bottom: 70px;
  line-height: 1.05;
}

.benefits-title span {
  font-size: 32px;
  color: #33a4f5;
}

.benefits-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.benefit-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(3, 18, 22, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(3, 18, 22, 0.08);
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #33a4f5;
  border-radius: 50%;
  margin-bottom: 18px;
}

.icon-wrapper .icon {
  color: #ffffff !important;
  width: 22px;
  height: 22px;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0e3b4a;
  margin: 0 0 6px 0;
}

.benefit-card p {
  font-size: 15px;
  color: #637381;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1100px) {
  .benefits-section {
    padding: 64px 48px;
  }
  .benefits-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
  }
  .benefit-card {
    flex: 0 1 calc(50% - 36px);
    max-width: 500px;
  }
}
@media (max-width: 740px) {
  .benefits-section {
    padding: 32px 16px;
  }
  .benefits-title {
    font-size: 21px;
  }
  .benefits-title span {
    font-size: 21px;
  }
  .benefits-cards {
    flex-direction: column;
    gap: 22px;
    padding: 0 20px;
  }
  .benefit-card {
    text-align: start;
    align-items: start;
    flex: 1 1 100%;
    max-width: none;
  }
  .icon-wrapper {
    margin: 0 0 16px 0;
  }
  .benefit-card h3,
  .benefit-card p {
    text-align: start;
  }
}
.benefit-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 140px 64px;
  background: #ffffff;
}

.benefit-text {
  flex: 1;
  text-align: left;
}

.benefit-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0e3b4a;
  line-height: 1.3;
  margin-bottom: 24px;
}

.benefit-text h2 span {
  font-size: 32px;
  color: #33a4f5;
}

.benefit-text p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 18px;
}

.cta-btn {
  display: inline-block;
  text-align: center;
  background: #33a4f5;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  width: 100%;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #2289d6;
}

.benefit-image {
  flex: 1;
  max-width: 500px;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.benefit-image img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .benefit-info {
    flex-direction: column;
    text-align: start;
  }
  .benefit-text {
    text-align: start;
  }
  .benefit-text h2 {
    font-size: 21px;
  }
  .benefit-text h2 span {
    font-size: 21px;
  }
  .benefit-image {
    display: none;
  }
  .cta-btn {
    width: 100%;
    text-align: center;
  }
}
.opportunity-section {
  background: #f1f5f9;
  padding: 148px 64px;
  text-align: center;
}
.opportunity-section .opportunity-title {
  font-size: 32px;
  font-weight: 800;
  color: #0e3b4a;
  margin-bottom: 60px;
  line-height: 1.3;
}
.opportunity-section .opportunity-title span {
  font-size: 32px;
  color: #33a4f5;
}
.opportunity-section .opportunity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 50px auto;
}
.opportunity-section .opportunity-cards .opportunity-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(3, 18, 22, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.opportunity-section .opportunity-cards .opportunity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(3, 18, 22, 0.08);
}
.opportunity-section .opportunity-cards .opportunity-card .icon-wrapper {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #33a4f5;
  border-radius: 50%;
  margin-bottom: 14px;
}
.opportunity-section .opportunity-cards .opportunity-card .icon-wrapper .icon {
  color: #fff !important;
  width: 20px;
  height: 20px;
}
.opportunity-section .opportunity-cards .opportunity-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0e3b4a;
  margin: 0 0 6px 0;
}
.opportunity-section .opportunity-cards .opportunity-card p {
  font-size: 15px;
  color: #637381;
  line-height: 1.6;
  margin: 0;
}
.opportunity-section .cta-btn {
  display: inline-block;
  background: #33a4f5;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 8px;
  width: 274px;
  height: 48px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}
.opportunity-section .cta-btn:hover {
  background: #2289d6;
}
@media (max-width: 1100px) {
  .opportunity-section .opportunity-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 740px) {
  .opportunity-section {
    padding: 80px 20px;
  }
  .opportunity-section .opportunity-title {
    font-size: 21px;
  }
  .opportunity-section .opportunity-title span {
    font-size: 21px;
  }
  .opportunity-section .opportunity-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .opportunity-section .opportunity-card {
    text-align: center;
    align-items: center;
  }
  .opportunity-section .opportunity-card .icon-wrapper {
    margin: 0 0 14px 0;
  }
  .opportunity-section .opportunity-card h3,
  .opportunity-section .opportunity-card p {
    text-align: center;
  }
  .opportunity-section .cta-btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}

.testimonials {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 425px) {
  .testimonials {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media screen and (min-width: 1313px) {
  .testimonials {
    width: 1217px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 48px;
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .testimonials {
    gap: 32px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.testimonials .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.testimonials .wrapper h2 {
  color: #0d3d53;
}
.testimonials .wrapper h2 strong {
  color: #30ade7;
  font-size: 21px;
  font-family: "REM Bold", sans-serif;
}
@media screen and (min-width: 768px) {
  .testimonials .wrapper h2 strong {
    font-size: 32px;
  }
}
.testimonials .showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
@media screen and (min-width: 425px) {
  .testimonials .showcase {
    gap: 24px;
  }
}
@media screen and (min-width: 768px) {
  .testimonials .showcase {
    gap: 32px;
  }
}
.testimonials .showcase .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 24px;
  border-radius: 16px;
  background-color: #f1f5f9;
  padding: 32px;
}
.testimonials .showcase .box img {
  width: 100px;
  object-fit: cover;
  border-radius: 8px;
}
.testimonials .showcase .box .user-feedback {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.testimonials .showcase .box .user-feedback strong {
  color: #0d3d53;
}

.faq {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 425px) {
  .faq {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media screen and (min-width: 1313px) {
  .faq {
    width: 1217px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .faq {
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.faq h2,
.faq h3 {
  color: #0d3d53;
}
.faq .box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
}
.faq .box-wrapper .box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 32px;
  background-color: #f3f3f3;
  border-radius: 16px;
}
.faq .box-wrapper .box.open {
  background-color: #f1f5f9;
}
.faq .box-wrapper .box .wrapper {
  display: flex;
  justify-content: space-between;
}
.faq .box-wrapper .box .wrapper i {
  color: #0d3d53;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
}
.faq .box p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease, padding 200ms ease;
  padding: 0 0;
}
.faq .box.open p {
  max-height: 400px;
  padding: 12px 0;
}
.faq .box .wrapper svg {
  transition: transform 180ms ease;
  transform-origin: center;
}
.faq .box.open .wrapper svg {
  transform: rotate(180deg);
}
.faq .box .wrapper { cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer {
  width: 100%;
  background-color: #30ade7;
  padding: 56px 0;
}
.footer p,
.footer ul,
.footer li,
.footer a {
  color: #fff;
}
.footer .list-title {
  font-size: 14px;
  font-family: "REM Bold", sans-serif;
}
@media screen and (min-width: 768px) {
  .footer .list-title {
    font-size: 24px;
  }
}
.footer ul {
  list-style: none;
}
.footer .container {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 425px) {
  .footer .container {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media screen and (min-width: 1313px) {
  .footer .container {
    width: 1217px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.footer .container {
  display: flex;
  flex-direction: column;
}
.footer .container .main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer .container .main .logo {
  max-width: 430px;
}
.footer .container .main .logo img {
  max-width: 280px;
  object-fit: cover;
}
.footer .container .main .anchors {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.footer .subfooter {
  padding: 32px 0;
}

@font-face {
  font-family: "REM Regular";
  src: url("../assets/fonts/rem-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "REM Bold";
  src: url("../assets/fonts/rem-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  line-height: 100%;
  font-size: 14px;
  font-family: "REM Regular", sans-serif;
  line-height: 140%;
}
@media screen and (min-width: 768px) {
  * {
    font-size: 16px;
  }
}

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
button {
  font-family: "REM Bold", sans-serif;
  line-height: 100%;
}

h1 {
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 21px;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 17.5px;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 24px;
  }
}

p {
  color: #727e84;
}

/*# sourceMappingURL=main.css.map */