@charset "UTF-8";
html,
body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
}

h1 {
  font-size: 3.75rem;
  line-height: 70px;
  font-weight: 500;
}

h2 {
  font-size: 2.5rem;
  line-height: 50px;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  line-height: 40px;
  font-weight: 600;
}

section {
  padding: 100px 0;
  scroll-margin-top: 100px;
}

.main {
  margin-top: 80px;
  overflow-x: hidden;
}

.btn-theme {
  background-color: #00EFD1;
  border-radius: 0;
  color: #042740;
  font-weight: 600;
  font-size: 1rem;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
}
.btn-theme:hover {
  background-color: #042740;
  color: #ffffff;
}

.hero-section {
  position: relative;
  padding-bottom: 0;
  background-color: #042740;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-section .hero-content {
  text-align: center;
}
.hero-section .hero-content h1 {
  color: #5FC1FF;
  margin-bottom: 20px;
}
.hero-section .hero-content p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 0;
}
.hero-section .phone-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .phone-mockup img.mockup-img {
  width: 972px;
  height: auto;
  display: block;
}
.hero-section .phone-screen {
  position: absolute;
  overflow: hidden;
  width: 100%;
  top: 82px;
  left: -3px;
}
.hero-section .swiper {
  width: 205px;
  height: 100%;
}
.hero-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hero-section .swiper-slide img {
  width: 205px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  background: transparent;
  z-index: 999;
  transition: background-color 0.3s ease-in-out;
  background-color: #042740;
}
header .navbar {
  padding: 0;
}
header .navbar .nav-header {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
header .navbar .nav-header .navbar-toggler:focus {
  box-shadow: unset;
}
header .navbar .logo {
  display: block;
  transition: opacity 0.3s ease-in-out;
}
header .navbar .logo img {
  width: 160px;
  height: 100%;
}
header .navbar .navbar-nav {
  gap: 15px;
  align-items: center;
}
header .navbar .navbar-nav li.menu-item-type-post_type.current-menu-item a {
  color: #00EFD1;
}
header .navbar .navbar-nav li.menu-item-type-post_type.current-menu-item a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #00EFD1;
}
header .navbar .navbar-nav li.current-lang a {
  color: #00EFD1;
}
header .navbar .navbar-nav li a {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding-left: 10px !important;
  padding-right: 10px !important;
  padding-top: 30px;
  padding-bottom: 30px;
}
header .navbar .navbar-nav li a:hover {
  color: #00EFD1;
}
header .navbar .navbar-nav li.lang-item a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
}
header .navbar .navbar-nav li.lang-item a img {
  border-radius: 5px;
  height: 16px !important;
}
header .navbar .navbar-nav li.lang-item-first {
  position: relative;
  display: flex;
  align-items: center;
}
header .navbar .navbar-nav li.lang-item-first::after {
  position: absolute;
  content: "";
  right: -15px;
  height: 18px;
  width: 1px;
  background-color: #ffffff;
}
header .navbar .navbar-nav .polylang-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
header .hamburger {
  cursor: pointer;
  border: none;
}
header .hamburger span,
header .hamburger span:before,
header .hamburger span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 24px;
  background-color: #ffffff;
  position: absolute;
  display: inline-block;
  content: "";
  right: 0px;
}
header .hamburger span:before {
  top: -8px;
  right: 0;
}
header .hamburger span:after {
  bottom: -8px;
  right: 0;
}
header .hamburger span,
header .hamburger span:before,
header .hamburger span:after {
  transition: all 100ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
header .app-dropdown {
  position: relative;
}
header .custom-dropdown-popup {
  display: none;
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 25px;
  min-width: 250px;
  z-index: 1000;
  text-align: left;
}
header .custom-dropdown-popup::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
header .app-dropdown.show .custom-dropdown-popup {
  display: block;
  animation: fadeInDown 0.3s ease;
}
header .dropdown-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #202330;
  margin: 0 0 5px 0;
  line-height: 1;
}
header .dropdown-content p {
  font-size: 1rem;
  color: #6D6F79;
  margin: 0 0 20px 0;
}
header .navbar .navbar-nav li a.app-store-btn {
  display: inline-block;
  transition: transform 0.2s ease;
  padding: 0 !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}
header .navbar .navbar-nav li a.app-store-btn:hover {
  transform: scale(1.05);
}
header .navbar .navbar-nav li a.app-store-btn img {
  height: auto;
  width: 100%;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
header .custom-dropdown-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
header .custom-dropdown-overlay.active {
  display: block;
}

.offcanvas {
  padding: 24px;
}
.offcanvas .offcanvas-body,
.offcanvas .offcanvas-header {
  padding: 0;
}
.offcanvas ul li {
  position: relative;
}
.offcanvas ul li.lang-item a {
  display: flex;
  align-items: baseline;
  gap: 5px;
  text-transform: uppercase;
  position: relative;
}
.offcanvas .app-dropdown .dropdown-content a img {
  width: 100%;
}
.offcanvas .app-dropdown .dropdown-content h3 {
  font-size: 1rem;
}
.offcanvas .polylang-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
.offcanvas .polylang-wrapper li.lang-item-first::after {
  position: absolute;
  content: "";
  right: -15px;
  height: 18px;
  top: 12px;
  width: 1px;
  background-color: #ffffff;
}

.site-footer {
  padding: 50px 0;
  border-top: 1px solid #DADCE0;
}
.site-footer .logo a img {
  width: 60%;
}
.site-footer .quick-links ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}
.site-footer .quick-links ul li a {
  text-decoration: none;
  color: #6D6F79;
  transition: 0.4s all;
}
.site-footer .quick-links ul li a:hover {
  color: #042740;
}
.site-footer .social-links ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 0;
  justify-content: flex-end;
}
.site-footer .social-links ul li a {
  text-decoration: none;
  color: #6D6F79;
}
.site-footer .social-links ul li a i {
  font-size: 20px;
  transition: 0.4s all;
}
.site-footer .social-links ul li a:hover i::before {
  color: #042740;
}
.site-footer .copyright {
  color: #6D6F79;
}
.site-footer .line {
  background-color: #DADCE0;
  width: 100%;
  height: 1px;
  margin: 30px 0;
}

.grecaptcha-badge {
  display: none !important;
}

.info-section {
  background: linear-gradient(332.98deg, rgba(101, 194, 254, 0.1) 33.77%, rgba(251, 210, 180, 0.5) 64.91%, #D0FFF9 99.86%);
}
.info-section p {
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 60px;
  letter-spacing: -3%;
  text-align: left;
  color: #202330;
}
.info-section h5 {
  color: #202330;
  font-weight: 600;
  font-size: 1.375rem;
  margin-bottom: 20px;
}
.info-section ul {
  padding-left: 1rem;
  margin-bottom: 0;
}
.info-section ul li {
  color: #6D6F79;
  font-weight: 400;
  line-height: 30px;
  font-size: 1.125rem;
}
.info-section ul li::marker {
  font-size: 1.375rem;
}

.section-heading {
  color: #202330;
}
.section-heading p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0;
  color: #6D6F79;
}

.problem-solution-section img {
  width: 90%;
}
.problem-solution-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.problem-solution-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.problem-solution-section ul li i {
  font-size: 1.5625rem;
  margin-top: 5px;
}
.problem-solution-section ul li .info h5 {
  color: #6D6F79;
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.problem-solution-section ul li .info p {
  color: #6D6F79;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0;
}

.how-it-work-section {
  background-color: #042740;
}
.how-it-work-section .arrow-img {
  text-align: center;
}
.how-it-work-section .arrow-img img {
  width: 100px;
}
.how-it-work-section .info-box {
  text-align: center;
}
.how-it-work-section .info-box img {
  width: 60px;
  margin-bottom: 25px;
}
.how-it-work-section .info-box h5 {
  color: #FFFFFF;
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.how-it-work-section .info-box p {
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0;
}

.partners-section .swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.swiper-arrow {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  gap: 10px;
}
.swiper-arrow .swiper-button-next {
  left: unset;
  right: unset;
  top: unset;
}
.swiper-arrow .swiper-button-prev {
  left: unset;
  right: unset;
  top: unset;
}
.swiper-arrow .swiper-arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 20px;
  width: 48px;
  height: 48px;
  background-color: #FFFFFF;
  opacity: 1;
  position: relative;
  margin-top: unset;
  border: 1px solid #00EFD1;
  transition: 0.4s all;
}
.swiper-arrow .swiper-arrow-btn i {
  color: #00EFD1;
  font-size: 18px;
}
.swiper-arrow .swiper-arrow-btn:hover {
  border: 1px solid #042740;
  background-color: #042740;
}
.swiper-arrow .swiper-arrow-btn:hover i {
  color: #00EFD1;
}
.swiper-arrow .swiper-arrow-btn::after {
  display: none;
}

.join-us-section {
  background-color: #E8FBF9;
}
.join-us-section .section-heading p {
  color: #6D6F79;
}
.join-us-section .newsletter {
  display: flex;
  justify-content: center;
}
.join-us-section .newsletter .form-control {
  border-radius: 0;
  height: 55px;
}
.join-us-section .newsletter .form-control::-moz-placeholder {
  color: #6D6F79;
}
.join-us-section .newsletter .form-control::placeholder {
  color: #6D6F79;
}
.join-us-section .newsletter .wpcf7-submit {
  height: 55px;
  width: 100%;
}
.join-us-section .newsletter .wpcf7-spinner {
  position: absolute;
  top: 15px;
  right: -65px;
}
.join-us-section .contact-info p {
  text-align: center;
  color: #6D6F79;
  font-size: 1.25rem;
  font-weight: 400;
}
.join-us-section .contact-info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}
.join-us-section .contact-info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.join-us-section .contact-info ul li span {
  width: 1px;
  height: 40px;
  background-color: #DADCE0;
}
.join-us-section .contact-info ul li i {
  color: #000;
  font-size: 18px;
}
.join-us-section .contact-info ul li a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
}

.blog-section .swiper-arrow a {
  height: 48px;
}

.blog-box a {
  text-decoration: none;
  transition: 0.4s all;
}
.blog-box a .img-box {
  position: relative;
  overflow: hidden;
}
.blog-box a .img-box img {
  width: 100%;
  transition: 0.4s all;
  min-height: 300px;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-box a:hover .info h6 {
  color: #00EFD1;
}
.blog-box a .info {
  margin-top: 20px;
}
.blog-box a .info .date-time {
  display: flex;
  align-items: center;
  gap: 30px;
}
.blog-box a .info .date {
  color: #6D6F79;
  font-size: 0.9375rem;
  margin-bottom: 10px;
}
.blog-box a .info .time {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #6D6F79;
  font-size: 0.9375rem;
  margin-bottom: 10px;
}
.blog-box a .info .time i {
  font-size: 0.875rem;
}
.blog-box a .info h6 {
  color: #000000;
  font-size: 1.25rem;
  margin-bottom: 0;
  transition: 0.4s all;
}

.breadcumb ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcumb ul li {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #6D6F79;
  font-size: 0.8125rem;
  font-weight: 400;
}
.breadcumb ul li.blog-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcumb ul li a {
  text-decoration: none;
  color: #000000;
  font-size: 0.8125rem;
  font-weight: 400;
}
.breadcumb ul li a i {
  color: #6D6F79;
}
.breadcumb ul li i {
  color: #6D6F79;
}

.page-hero {
  background: linear-gradient(332.98deg, rgba(101, 194, 254, 0.1) 33.77%, rgba(251, 210, 180, 0.5) 64.91%, #D0FFF9 99.86%);
}
.page-hero p {
  color: #6D6F79;
  font-size: 20px;
}
.page-hero img {
  width: 100%;
}

.history-mission img {
  width: 80%;
}
.history-mission p {
  color: #6D6F79;
  font-size: 1.25rem;
}

.split-section {
  position: relative;
}
.split-section .text-content {
  padding: 100px 0;
  height: 100%;
  position: relative;
}
.split-section .text-content.has-arrow {
  position: relative;
  display: flex;
  align-items: center;
}
.split-section .text-content.has-arrow::after {
  position: absolute;
  content: "";
  right: -120px;
  width: 120px;
  height: 150px;
  background-color: #042740;
  clip-path: polygon(35% 50%, 0 0, 0 100%);
}
.split-section .text-content .info {
  text-align: center;
}
.split-section .text-content .info.left-text {
  padding-right: 100px;
}
.split-section .text-content .info.right-text {
  padding-left: 100px;
}
.split-section .text-content .info h2 {
  color: #FFFFFF;
}
.split-section .text-content .info p {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 0;
}

.split-section::before,
.split-section::after {
  content: "";
  position: absolute;
  z-index: 0;
}

.split-section::before {
  background-color: #042740;
}

.split-section::after {
  background-color: #63B1BB;
}

.split-section .container {
  position: relative;
  z-index: 1;
}

.the-team .info-box {
  display: flex;
  align-items: center;
  gap: 30px;
}
.the-team .info-box img {
  width: 220px;
}
.the-team .info-box .info h5 {
  color: #6D6F79;
  font-size: 1.375rem;
  font-weight: 600;
}
.the-team .info-box .info p {
  font-size: 1.25rem;
  color: #6D6F79;
  margin-bottom: 0;
}
.the-team p {
  font-size: 1.25rem;
  color: #6D6F79;
  margin-bottom: 0;
}

.load-more-link {
  color: #00EFD1;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.load-more-link:disabled {
  border: unset;
}
.load-more-link::after {
  position: absolute;
  content: "";
  left: 0;
  width: 45%;
  height: 1px;
  background-color: #E8ECF4;
}
.load-more-link::before {
  position: absolute;
  content: "";
  right: 0;
  width: 45%;
  height: 1px;
  background-color: #E8ECF4;
}

.blog-content-section .blog-details .blog-info {
  display: flex;
  align-items: center;
  gap: 25px;
}
.blog-content-section .blog-details .blog-info .share {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00EFD1;
  cursor: pointer;
}
.blog-content-section .blog-details .blog-info .share i {
  font-size: 0.875rem;
}
.blog-content-section .blog-details .blog-info .share:hover {
  color: #042740;
}
.blog-content-section .blog-details .blog-info .share:hover i::before {
  color: #042740;
}
.blog-content-section .blog-details .blog-info a.back-to-blog {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #00EFD1;
  text-decoration: none;
}
.blog-content-section .blog-details .blog-info a.back-to-blog i {
  font-size: 0.875rem;
}
.blog-content-section .blog-details .blog-info a.back-to-blog:hover {
  color: #042740;
}
.blog-content-section .blog-details .blog-info a.back-to-blog:hover i::before {
  color: #042740;
}
.blog-content-section .blog-details .blog-info .author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-content-section .blog-details .blog-info .author img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-content-section .blog-details .blog-info .author .name {
  color: #6D6F79;
}
.blog-content-section .blog-details .blog-info .date {
  color: #6D6F79;
}
.blog-content-section .blog-details .blog-info .time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6D6F79;
}
.blog-content-section .blog-details .blog-info .time i {
  font-size: 0.875rem;
}
.blog-content-section .blog-content .main-image {
  position: relative;
}
.blog-content-section .blog-content .main-image::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(332.98deg, rgba(15, 151, 169, 0.6) 33.8%, rgba(255, 247, 232, 0.3) 60.46%, rgba(68, 139, 106, 0.06) 80.79%, rgba(0, 142, 244, 0.24) 99.86%);
}
.blog-content-section .blog-content .main-image img {
  width: 100%;
}
.blog-content-section .blog-content .content {
  color: #6D6F79;
  font-size: 1.25rem;
  line-height: 30px;
}
.blog-content-section .blog-content .content p {
  color: #6D6F79;
  font-size: 1.25rem;
  line-height: 30px;
}
.blog-content-section .blog-content .content ul li {
  color: #6D6F79;
  font-size: 1.25rem;
  line-height: 30px;
}
.blog-content-section .blog-content .content ol li {
  color: #6D6F79;
  font-size: 1.25rem;
  line-height: 30px;
}
.blog-content-section .latest-blog h5 {
  font-size: 22px;
  color: #202330;
  margin-bottom: 20px;
  font-weight: 600;
}
.blog-content-section .latest-blog ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid #E8ECF4;
}
.blog-content-section .latest-blog ul li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-content-section .latest-blog ul li a img {
  width: 100px;
}
.blog-content-section .latest-blog ul li a .info h6 {
  font-size: 0.9375rem;
  color: #000;
}
.blog-content-section .latest-blog ul li a .info .date-time {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-content-section .latest-blog ul li a .info .date {
  color: #6D6F79;
  font-size: 0.875rem;
}
.blog-content-section .latest-blog ul li a .info .time {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #6D6F79;
  font-size: 0.875rem;
}
.blog-content-section .latest-blog ul li a .info .time i {
  font-size: 0.75rem;
}

a.to-blog {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #00EFD1;
  text-decoration: none;
}
a.to-blog i {
  font-size: 0.875rem;
}
a.to-blog i::before {
  color: #00EFD1;
}
a.to-blog:hover {
  color: #042740;
}
a.to-blog:hover i::before {
  color: #042740;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
  margin: 1em 0.5em 1em;
}

.error-404 {
  min-height: 80dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-404 h1 {
  color: #5FC1FF;
  font-size: 5rem;
  font-weight: 700;
}
.error-404 p {
  color: #6D6F79;
  font-size: 1.125rem;
  font-weight: 400;
}
.error-404 a.return-btn {
  background-color: #00EFD1;
  border-radius: 0;
  color: #042740;
  font-weight: 600;
  font-size: 1rem;
  padding-left: 20px;
  padding-right: 20px;
  display: inline-flex;
  align-items: center;
  height: 48px;
  text-decoration: none;
  text-align: center;
}

.privacy-policy-content h5 {
  color: #344054;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 500;
}
.privacy-policy-content h4 {
  color: #101828;
  margin-bottom: 12px;
  font-size: 1.125rem;
  font-weight: 500;
}
.privacy-policy-content p {
  color: #667085;
  font-size: 0.875rem;
  line-height: 22px;
}
.privacy-policy-content p a {
  color: #094d7d;
  text-decoration: none;
}
.privacy-policy-content ul {
  margin-bottom: 1rem;
  padding-left: 0;
  list-style-type: none;
}
.privacy-policy-content ul li {
  color: #667085;
  font-size: 0.875rem;
  line-height: 22px;
}
.privacy-policy-content ul li::before {
  content: "•";
  color: #667085;
  margin-right: 0.5em;
  font-size: 1.125rem;
}

.privacy-policy .main {
  margin-top: 0;
}
.privacy-policy .main section {
  padding: 50px 0;
}
.privacy-policy header,
.privacy-policy footer {
  display: none !important;
}/*# sourceMappingURL=style.css.map */