html,
body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  overflow-x: hidden;
}

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: 80px 0;
  scroll-margin-top: 80px;
}

.main {
  margin-top: 80px;
  overflow-x: hidden;
}

.btn-theme {
  background-color: #2F80ED;
  border-radius: 8px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  border-color: #2F80ED;
}
.btn-theme:active {
  background-color: #2F80ED !important;
  color: #FFFFFF !important;
  border-color: #2F80ED !important;
}
.btn-theme:hover {
  background-color: #1673ec;
  color: #ffffff;
}

.hero-section {
  position: relative;
  padding: 0;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-position: 50% 35%;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-section .content {
  position: relative;
  z-index: 10;
  margin-bottom: 130px;
}
.hero-section .content h1 {
  color: #FFFFFF;
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 20px;
}
.hero-section .content p {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 0;
}
.hero-section .content .v-line {
  width: 1px;
  height: 100px;
  background-color: rgba(204, 241, 246, 0.6392156863);
  position: relative;
  margin: 0 auto;
}
.hero-section .content a {
  padding: 15px 25px;
}
.hero-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.hero-section::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(360deg, #00193B 0%, #00193B 33.97%, rgba(0, 25, 59, 0) 100%);
  z-index: 1;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background: transparent;
  z-index: 999;
  transition: background-color 0.3s ease-in-out;
  border-bottom: 1px solid rgba(0, 185, 209, 0.082);
}
header.scrolled {
  background-color: #ffffff;
  border-bottom: unset;
}
header.scrolled .navbar .navbar-nav li a {
  color: #000000;
}
header.scrolled .navbar .navbar-nav li a:hover {
  color: #2F80ED;
}
header.scrolled .navbar .language-switcher .dropdown-toggle span {
  color: #000;
}
header.scrolled .navbar .language-switcher .dropdown-toggle::after {
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
}
header.scrolled .hamburger span,
header.scrolled .hamburger span:before,
header.scrolled .hamburger span:after {
  background-color: #013076;
}
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: auto;
  height: 35px;
}
header .navbar .navbar-nav {
  gap: 20px;
}
header .navbar .navbar-nav li a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 0.5rem;
}
header .navbar .navbar-nav li a:hover {
  color: #2F80ED;
}
header .navbar .language-switcher .dropdown-toggle img {
  border-radius: 50%;
  height: 18px !important;
}
header .navbar .language-switcher .dropdown-toggle span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
}
header .navbar .language-switcher .dropdown-toggle::after {
  display: inline-block;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  width: 8px;
  height: 8px;
  border-top: unset;
  border-left: unset;
  transform: rotate(-315deg);
  margin-left: 5px;
  margin-top: -4px;
}
header .navbar .language-switcher .dropdown-menu {
  min-width: 120px;
}
header .navbar .language-switcher .dropdown-menu li a {
  color: #000;
}
header .navbar .language-switcher .dropdown-menu li a:active {
  background-color: transparent;
  color: #2F80ED;
}
header .navbar .language-switcher .dropdown-menu li a img {
  border-radius: 50%;
  height: 18px !important;
}
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 .hamburger.active span {
  background-color: transparent !important;
}
header .hamburger.active span:before,
header .hamburger.active span:after {
  top: 0;
}
header .hamburger.active span:before {
  transform: rotate(45deg);
}
header .hamburger.active span:after {
  transform: translateY(-10px) rotate(-45deg);
  top: 10px;
}

.offcanvas {
  padding: 24px;
}
.offcanvas .offcanvas-body,
.offcanvas .offcanvas-header {
  padding: 0;
}
.offcanvas .language-switcher-list {
  display: flex;
  align-items: center;
}
.offcanvas .language-switcher-list li {
  flex: 1 1 0;
}
.offcanvas .language-switcher-list li a {
  color: rgba(47, 43, 61, 0.8980392157);
  border: 1px solid rgba(47, 43, 61, 0.1215686275);
  padding: 15px;
  text-decoration: none;
  gap: 5px;
}
.offcanvas .language-switcher-list li a img {
  border-radius: 50%;
  height: 18px !important;
}
.offcanvas .language-switcher-list li a.active {
  background-color: rgba(47, 128, 237, 0.0784313725);
}
.offcanvas .language-switcher-list li:first-child a {
  border-radius: 8px 0 0 8px;
}
.offcanvas .language-switcher-list li:first-child a.active {
  border-width: 1px 0 1px 1px;
}
.offcanvas .language-switcher-list li:last-child a {
  border-radius: 0 8px 8px 0;
}
.offcanvas .language-switcher-list li:last-child a.active {
  border-width: 1px 1px 1px 0;
}

.section-heading {
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 20px;
}
.section-heading.white {
  color: #FFFFFF;
}
.section-heading.dark {
  color: #000000;
}

.info-section p {
  font-size: 1.125rem;
  color: #000;
  line-height: 1.75rem;
  font-weight: 400;
}
.info-section img.middle {
  margin-top: -150px;
  position: relative;
  z-index: 10;
}

.stories-section a {
  text-decoration: none;
}
.stories-section .box {
  background-color: rgba(225, 138, 91, 0.0784313725);
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  padding: 40px;
}
.stories-section .box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  background-color: #E18A5B;
  border-radius: 100%;
}
.stories-section .box .icon img {
  width: 30px;
}
.stories-section .box h4 {
  color: #000000;
  font-weight: 600;
  font-size: 1.375rem;
  margin-bottom: 0;
}
.stories-section .box h4 small {
  font-size: 1.125rem;
  font-weight: 400;
}

.founder-section .left-box {
  background-color: rgba(225, 138, 91, 0.3803921569);
  min-height: 100dvh;
  display: flex;
  align-items: center;
}
.founder-section .left-box .content {
  position: relative;
}
.founder-section .left-box .content img.heart-img {
  position: absolute;
  left: -50px;
  top: -60px;
  width: 180px;
}
.founder-section .left-box .content p {
  font-size: 1.125rem;
  color: #000;
  line-height: 1.75rem;
  font-weight: 400;
}
.founder-section .left-box .content span {
  position: absolute;
  left: -35px;
  top: -55px;
  font-size: 5.3125rem;
  font-weight: 700;
  color: #000;
}
.founder-section .right-box {
  position: relative;
}
.founder-section .right-box .img-box img {
  margin-left: -130px;
}

.join-section .right-box {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.join-section .right-box .content {
  position: relative;
}
.join-section .right-box .content img.heart-img {
  position: absolute;
  left: -50px;
  top: -60px;
  width: 180px;
}
.join-section .right-box .content p {
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.75rem;
  font-weight: 400;
}
.join-section .right-box .content ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.join-section .right-box .content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.75rem;
  font-weight: 600;
}
.join-section .right-box .content ul li span img {
  width: 24px;
}
.join-section .right-box .content .newsletter .wpcf7-spinner {
  position: absolute;
  top: 15px;
}
.join-section .right-box .content .newsletter p {
  margin-bottom: 0;
}
.join-section .right-box .content .newsletter small {
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 400;
}
.join-section .right-box .content .newsletter .wpcf7-not-valid-tip {
  font-size: 0.8125rem;
}
.join-section .right-box .content .newsletter .wpcf7 form .wpcf7-response-output {
  text-align: center;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  padding: 1em;
}
.join-section .right-box .content .newsletter input.form-control {
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #fff;
  height: 56px;
  border-radius: 10px;
}
.join-section .right-box .content .newsletter input.form-control::-moz-placeholder {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
}
.join-section .right-box .content .newsletter input.form-control::placeholder {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
}
.join-section .right-box .content .newsletter .wpcf7-submit {
  height: 56px;
  background-color: #2F80ED;
  padding-left: 20px;
  padding-right: 20px;
}
.join-section .left-box {
  position: relative;
}
.join-section .left-box .img-box img {
  margin-left: 130px;
}

.contact-section .box {
  text-align: center;
}
.contact-section .box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #000000;
  font-size: 1.125rem;
  font-weight: 400;
}
.contact-section .box .icon img {
  width: 20px;
}
.contact-section .box a {
  color: #2F80ED;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
}

.site-footer {
  background-color: #121827;
}
.site-footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-footer .footer-logo p {
  color: #CCCDD3;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 5px;
}
.site-footer .copyright p {
  color: #CCCDD3;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}
.site-footer .links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.site-footer .links li a {
  color: #CCCDD3;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s all;
}
.site-footer .links li a:hover {
  color: #FFFFFF;
}/*# sourceMappingURL=style.css.map */