@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Oxygen:wght@300;400;700&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  font-weight: 300;
  line-height: 1.4;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

input,
textarea,
select {
  margin: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

textarea {
  overflow: auto;
}

button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner {
  padding: 0 !important;
  border: 0 none !important;
}

mark {
  background: none;
  color: inherit;
}

strong {
  font-weight: bold;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  width: 100%;
  min-height: 100%;
  color: #6b7280;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oxygen", sans-serif;
}

[data-aos=fade-up] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-aos=fade-up].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

a,
button,
input {
  outline: none;
}

a,
a:hover {
  text-decoration: none;
}

p,
li {
  margin-bottom: 0;
}

button {
  border: 0;
  background-color: transparent;
}

*:focus {
  outline: none;
}

.content-wrapper {
  width: 100%;
  max-width: 1320px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}

.header-wrapper {
  width: 100%;
  max-width: 1475px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}

.desk-visible {
  display: block;
}

.only-mobile {
  display: none;
}

.hide-mobile-tablet {
  display: block;
}

.only-mobile-tablet {
  display: none;
}

@media (max-width: 1023px) {
  .content-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .header-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hide-mobile-tablet {
    display: none;
  }
  .only-mobile-tablet {
    display: block;
  }
}
@media (max-width: 767px) {
  .content-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header-wrapper {
    padding-left: 8px;
    padding-right: 8px;
  }
  .desk-visible {
    display: none;
  }
  .only-mobile {
    display: block;
  }
}
.twb-btn {
  --color: $color-green;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-size: 16px;
  line-height: 1;
  padding: 13px 24px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid var(--White, #ffffff);
  transition: color 0.5s;
  z-index: 1;
  font-weight: 500;
  border-radius: 30px;
  color: #ffffff;
}
.twb-btn svg {
  margin-left: 14px;
}
.twb-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #2ab572;
  height: 150px;
  width: 300px;
  border-radius: 50%;
}
.twb-btn:hover {
  color: #fff;
}
.twb-btn:before {
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}
.twb-btn:hover:before {
  top: -30px;
  left: -30px;
}
.twb-btn:active:before {
  background: #2ab572;
  transition: background 0s;
}
.twb-btn--outline {
  border-color: #1b1b1b;
  color: #1b1b1b;
  background-color: #ffffff;
}
.twb-btn--outline span {
  color: #2ab572;
}
.twb-btn--outline:before {
  background: #2ab572;
}
.twb-btn--outline:hover {
  color: #ffffff;
}
.twb-btn--outline:hover span {
  color: #ffffff;
}

.twb-heading h1 {
  color: #ffffff;
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
}
.twb-heading h1 span {
  color: #2ab572;
}
.twb-heading h2 {
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
  color: #2ab572;
}
.twb-heading h2 span {
  color: #1b1b1b;
}

.twb-heading {
  overflow: hidden;
}

.twb-heading h2 {
  overflow: hidden;
  display: block;
}

.twb-heading span {
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .twb-heading h1 {
    font-size: 50px;
    line-height: 60px;
  }
  .twb-heading h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .twb-heading h1 {
    font-size: 38px;
    line-height: 46px;
  }
  .twb-heading h2 {
    font-size: 26px;
    line-height: 36px;
  }
}
.twb-spncrSec {
  padding: 35px 60px;
  background-color: #ffffff;
  border: 1px solid #f3f5f9;
  border-radius: 24px;
}
.twb-spncrSec h3.head {
  color: #2ab572;
  margin-bottom: 26px;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}
.twb-spncrSec__outer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 30px;
}
.twb-spncrSec__outer .card {
  box-shadow: 0px 4px 24px 0px rgba(199, 199, 199, 0.2392156863);
  background-color: #eff2f7;
  padding: 12px;
  min-width: 160px;
  border-radius: 16px;
  width: 64px;
}
.twb-spncrSec__outer .card img {
  width: 100%;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.twb-card {
  text-align: center;
}
.twb-card__img-wrap {
  width: 205px;
  height: 205px;
  border-radius: 50%;
  background-color: #d4e8f7;
  overflow: hidden;
  margin: 0 auto 30px;
}
.twb-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.twb-card:hover .twb-card__img {
  transform: scale(1.06);
}
.twb-card__name {
  font-size: 28px;
  font-weight: 700;
  color: #1b1b1b;
  font-family: "Oxygen", sans-serif;
  margin-bottom: 8px;
}
.twb-card__role {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6980392157);
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .twb-card__img-wrap {
    width: 240px;
    height: 240px;
  }
  .twb-card__name {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .twb-card__img-wrap {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
  }
  .twb-card__name {
    font-size: 22px;
  }
  .twb-card__role {
    font-size: 16px;
  }
}
.twb-heroBnnr {
  width: 100%;
  height: 800px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.twb-heroBnnr .twb-btn {
  margin-top: 40px;
}
.twb-heroBnnr__subhead {
  font-weight: 400;
  font-size: 32px;
  line-height: 48px;
  color: #ffffff;
  padding-top: 24px;
}
.twb-heroBnnr__outer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 810px;
  flex-direction: column;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
}
.twb-heroBnnr__cnt {
  position: absolute;
  right: 0;
  bottom: 55px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  padding-top: 24px;
  z-index: 2;
  width: 40%;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-heroBnnr {
    height: 600px;
  }
  .twb-heroBnnr .twb-heading h1 {
    font-size: 30px;
    line-height: 38px;
  }
  .twb-heroBnnr__outer {
    height: 600px;
  }
  .twb-heroBnnr__subhead {
    font-size: 28px;
    line-height: 40px;
  }
  .twb-heroBnnr__cnt {
    width: 60%;
    bottom: 40px;
    font-size: 16px;
    line-height: 26px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-heroBnnr {
    height: 575px;
  }
  .twb-heroBnnr .twb-heading h1 {
    font-size: 30px;
    line-height: 38px;
  }
  .twb-heroBnnr__outer {
    height: 575px;
  }
  .twb-heroBnnr__subhead {
    font-size: 32px;
    line-height: 39px;
    width: 65%;
  }
  .twb-heroBnnr__cnt {
    width: 80%;
    bottom: 30px;
  }
}
@media (max-width: 767px) {
  .twb-heroBnnr {
    height: 100%;
    padding: 60px 0;
    background-position: 70%;
  }
  .twb-heroBnnr__outer {
    height: 500px;
    justify-content: flex-end;
  }
  .twb-heroBnnr__subhead {
    font-size: 20px;
    line-height: 30px;
    padding-top: 15px;
  }
  .twb-heroBnnr__cnt {
    position: relative;
    width: 100%;
    bottom: auto;
    right: auto;
    padding-top: 50px;
    font-size: 16px;
    line-height: 24px;
  }
}
.twb-sltnsHme {
  padding: 85px 0;
  overflow: hidden;
}
.twb-sltnsHme.bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 384px;
  position: relative;
}
.twb-sltnsHme .twb-heading {
  margin-bottom: 90px;
}
.twb-sltnsHme .twb-heading img {
  vertical-align: middle;
  width: 42px;
  height: 42px;
}
.twb-sltnsHme__row {
  display: flex;
  align-items: flex-start;
  gap: 90px;
}
.twb-sltnsHme__left {
  width: 40%;
  flex-shrink: 0;
}
.twb-sltnsHme__label {
  font-size: 24px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 22px;
}
.twb-sltnsHme__imgs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.twb-sltnsHme__imgs-top {
  display: flex;
  gap: 12px;
}
.twb-sltnsHme__imgs-top img {
  width: calc(50% - 6px);
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
}
.twb-sltnsHme__imgs-bottom {
  width: 100%;
  height: 180px;
}
.twb-sltnsHme__imgs-bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
}
.twb-sltnsHme__right {
  flex: 1;
}
.twb-sltnsHme__desc {
  margin-bottom: 30px;
}
.twb-sltnsHme__items {
  display: flex;
  flex-direction: column;
}
.twb-sltnsHme__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.twb-sltnsHme__item-icon {
  width: 60px;
  height: 60px;
  background-color: #4fbaf0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.twb-sltnsHme__item-icon img {
  width: 28px;
  height: 28px;
}
.twb-sltnsHme__item-body h4 {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 16px;
}
.twb-sltnsHme__item-body p {
  margin-bottom: 44px;
  width: 90%;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-sltnsHme {
    padding: 60px 0;
  }
  .twb-sltnsHme__row {
    gap: 40px;
  }
  .twb-sltnsHme__left {
    width: 44%;
  }
  .twb-sltnsHme__imgs-top img, .twb-sltnsHme__imgs-bottom img {
    height: 180px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-sltnsHme {
    padding: 60px 0;
  }
  .twb-sltnsHme__row {
    flex-direction: column;
    gap: 40px;
  }
  .twb-sltnsHme__left {
    width: 100%;
  }
  .twb-sltnsHme__imgs-top img, .twb-sltnsHme__imgs-bottom img {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .twb-sltnsHme {
    padding: 40px 0;
  }
  .twb-sltnsHme .twb-heading {
    margin-bottom: 32px;
  }
  .twb-sltnsHme__row {
    flex-direction: column;
    gap: 30px;
  }
  .twb-sltnsHme__left {
    width: 100%;
  }
  .twb-sltnsHme__imgs-top img, .twb-sltnsHme__imgs-bottom img {
    height: 100%;
  }
  .twb-sltnsHme__desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .twb-sltnsHme .twb-sltnsHme__item-body p {
    width: 100%;
  }
  .twb-sltnsHme__imgs-bottom {
    height: 100%;
  }
}
.twb-whoweAre {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
}
.twb-whoweAre__row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.twb-whoweAre__left {
  width: 45%;
  flex-shrink: 0;
}
.twb-whoweAre__label {
  font-size: 16px;
  font-weight: 700;
  color: #2ab572;
  margin-bottom: 12px;
}
.twb-whoweAre .twb-heading {
  margin-bottom: 80px;
}
.twb-whoweAre__imgs {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 35px;
}
.twb-whoweAre__imgs img:first-child {
  margin-right: auto;
}
.twb-whoweAre__imgs img:last-child {
  margin-left: auto;
}
.twb-whoweAre__imgs img {
  width: 80%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.twb-whoweAre__right {
  flex: 1;
  padding-top: 4px;
}
.twb-whoweAre__desc {
  margin-bottom: 24px;
}
.twb-whoweAre .twb-btn--dark {
  border-color: #1b1b1b;
  color: #1b1b1b;
  margin-bottom: 48px;
}
.twb-whoweAre .twb-btn--dark:before {
  background: #1b1b1b;
}
.twb-whoweAre .twb-btn--dark:hover {
  color: #ffffff;
}
.twb-whoweAre__vision h4, .twb-whoweAre__mission h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 16px;
}
.twb-whoweAre__vision {
  margin: 110px 0 32px;
}
.twb-whoweAre__vision ul {
  padding-left: 30px;
  margin-bottom: 0;
  list-style: disc;
}
.twb-whoweAre__vision ul li {
  font-size: 18px;
  line-height: 28px;
  color: #6b7280;
  margin-bottom: 10px;
  width: 95%;
}
.twb-whoweAre__vision ul li:last-child {
  margin-bottom: 0;
}
.twb-whoweAre__mission {
  margin: 72px 0 0;
}
.twb-whoweAre__mission p {
  width: 90%;
  color: #6b7280;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-whoweAre {
    padding: 60px 0;
  }
  .twb-whoweAre__row {
    gap: 50px;
  }
  .twb-whoweAre__left {
    width: 42%;
  }
  .twb-whoweAre .twb-heading h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-whoweAre {
    padding: 60px 0;
  }
  .twb-whoweAre__row {
    flex-direction: column;
    gap: 40px;
  }
  .twb-whoweAre__left {
    width: 100%;
  }
  .twb-whoweAre__imgs {
    flex-direction: row;
  }
  .twb-whoweAre__imgs img {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .twb-whoweAre {
    padding: 40px 0;
  }
  .twb-whoweAre__row {
    flex-direction: column;
    gap: 32px;
  }
  .twb-whoweAre__left {
    width: 100%;
  }
  .twb-whoweAre .twb-heading h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .twb-whoweAre__imgs img {
    height: 170px;
  }
  .twb-whoweAre__desc {
    font-size: 14px;
    line-height: 24px;
  }
  .twb-whoweAre .twb-btn--dark {
    margin-bottom: 32px;
  }
  .twb-whoweAre__imgs img {
    width: 100%;
  }
}
.twb-mapSec {
  margin: 80px 0;
}
.twb-mapSec__outer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 45px;
}
.twb-mapSec__outer .sec1 {
  width: 55%;
  height: auto;
}
.twb-mapSec__outer .sec1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
.twb-mapSec__outer .sec2 {
  flex: 1;
}
.twb-mapSec__outer p {
  width: 80%;
  margin-bottom: 15px;
}
.twb-mapSec .twb-heading {
  margin: 26px 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .twb-mapSec__outer p {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .twb-mapSec__outer {
    flex-direction: column;
    gap: 10px;
  }
  .twb-mapSec__outer .sec1 {
    width: 100%;
  }
  .twb-mapSec__outer p {
    width: 100%;
  }
}
.twb-spnsrSec {
  background: linear-gradient(101.89deg, #ebf6ff 0.6%, #eeeeee 99.4%);
  padding: 85px 0 60px;
  overflow: hidden;
}
.twb-spnsrSec__row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.twb-spnsrSec__left {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.twb-spnsrSec__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.twb-spnsrSec__box {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 50px;
}
.twb-spnsrSec__ttl {
  color: #2ab572;
  margin-bottom: 26px;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}
.twb-spnsrSec__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.twb-spnsrSec__grid--6col {
  grid-template-columns: repeat(6, 1fr);
}
.twb-spnsrSec__card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 10px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eff2f7;
}
.twb-spnsrSec__card img {
  max-width: 100%;
  max-height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.twb-spnsrSec__ticker {
  overflow: hidden;
}
.twb-spnsrSec__ticker:hover .twb-spnsrSec__ticker-track {
  animation-play-state: paused;
}
.twb-spnsrSec__ticker-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
.twb-spnsrSec__ticker-track .twb-spnsrSec__card {
  width: 200px;
  flex-shrink: 0;
  margin-right: 30px;
}
.twb-spnsrSec__ticker--rtl .twb-spnsrSec__ticker-track {
  animation: twbTickerRtl 25s linear infinite;
}
.twb-spnsrSec__ticker--ltr .twb-spnsrSec__ticker-track {
  animation: twbTickerLtr 25s linear infinite;
}
.twb-spnsrSec__cme-wrap {
  overflow: hidden;
}
.twb-spnsrSec__cme-wrap:hover .twb-spnsrSec__cme-inner {
  animation-play-state: paused;
}
.twb-spnsrSec__cme-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  animation: cmeScrollUp 10s linear infinite;
}
.twb-spnsrSec__cta {
  flex: 1;
  min-height: 185px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}
.twb-spnsrSec__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.twb-spnsrSec__cta-inner {
  position: relative;
  z-index: 1;
  padding: 30px 75px;
}
.twb-spnsrSec__cta-inner h3 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 52px;
  margin-bottom: 30px;
}
.twb-spnsrSec__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  transition: gap 0.3s ease;
}
.twb-spnsrSec__cta-link:hover {
  gap: 14px;
  color: #ffffff;
}
.twb-spnsrSec__cntrTxt {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0 0;
}
.twb-spnsrSec__cntrTxt p {
  color: #1b1b1b;
  font-family: "oxygen", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.twb-spnsrSec__cntrTxt a {
  color: #2ab572;
  font-size: 20px;
  font-weight: 600;
}
.twb-spnsrSec__cntrTxt a:hover {
  opacity: 0.8;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-spnsrSec__left {
    width: 44%;
  }
  .twb-spnsrSec__cta-inner h3 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-spnsrSec {
    padding: 60px 0;
  }
  .twb-spnsrSec__row {
    flex-direction: column;
  }
  .twb-spnsrSec__left {
    width: 100%;
  }
  .twb-spnsrSec__grid--6col {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .twb-spnsrSec {
    padding: 40px 0;
  }
  .twb-spnsrSec__row {
    flex-direction: column;
    gap: 16px;
  }
  .twb-spnsrSec__left {
    width: 100%;
  }
  .twb-spnsrSec__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .twb-spnsrSec__grid--6col {
    grid-template-columns: repeat(2, 1fr);
  }
  .twb-spnsrSec__cme-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .twb-spnsrSec .twb-spnsrSec__cta-inner {
    padding: 30px;
  }
  .twb-spnsrSec__cta-inner h3 {
    font-size: 30px;
    line-height: 38px;
  }
  .twb-spnsrSec__box {
    padding: 35px 20px;
  }
}
@keyframes twbTickerRtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes twbTickerLtr {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.twb-journalClub {
  margin: 85px 0;
}
.twb-journalClub__outer {
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.twb-journalClub__outer .sec1 {
  width: 65%;
}
.twb-journalClub__outer .sec2 {
  flex: 1;
}
.twb-journalClub__img {
  width: 100%;
  height: 280px;
  position: relative;
}
.twb-journalClub__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.twb-journalClub__inner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0 77px;
  display: flex;
  justify-content: flex-start;
  gap: 70px;
  align-items: center;
}
.twb-journalClub__inner h2 {
  color: #ffffff;
  font-size: 48px;
  line-height: 52px;
  font-weight: 700;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .twb-journalClub__inner h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .twb-journalClub__inner .twb-btn {
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .twb-journalClub__outer {
    flex-direction: column;
  }
  .twb-journalClub__outer .sec1,
  .twb-journalClub__outer .sec2 {
    width: 100%;
  }
  .twb-journalClub__inner {
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }
  .twb-journalClub__inner h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
.twb-podcastSec {
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0 65px;
  margin-bottom: 80px;
}
.twb-podcastSec .twb-heading h2 {
  text-align: center;
  margin: 0 0 52px;
}
.twb-podcastSec__rss {
  width: 70%;
  margin: 0 auto;
  height: 425px;
}
.twb-podcastSec__rss iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .twb-podcastSec__rss {
    width: 100%;
  }
}
.twb-partnerSites {
  padding: 65px 0 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.twb-partnerSites .inner {
  padding-left: 16px;
  border-left: 3px solid #4fbaf0;
}
.twb-partnerSites .twb-heading h2 {
  text-align: center;
  margin-bottom: 40px;
}
.twb-partnerSites .twb-alphabet-nav {
  margin-bottom: 20px;
}
.twb-partnerSites .twb-alphabet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
  border: none;
}
.twb-partnerSites .twb-alphabet-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1.5px solid rgba(27, 27, 27, 0.2);
  background-color: #ffffff;
  color: #1b1b1b;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.twb-partnerSites .twb-alphabet-list li a:hover {
  background-color: rgba(42, 181, 114, 0.12);
  border-color: #2ab572;
  color: #2ab572;
}
.twb-partnerSites .twb-alphabet-list li a.active {
  background-color: #2ab572;
  border-color: #2ab572;
  color: #ffffff;
}
.twb-partnerSites .twb-country-block {
  margin: 30px 0;
}
.twb-partnerSites .twb-country-name {
  font-size: 38px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 10px;
}
.twb-partnerSites .twb-no-hospitals {
  font-size: 14px;
  color: #6b7280;
  padding: 6px 0 20px;
  margin: 0;
}
.twb-partnerSites .twb-hospitals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
  margin: 30px 0;
}
.twb-partnerSites .twb-hospital-card {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 20px 30px;
  border: 1px solid #f3f5f9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(4px);
}
.twb-partnerSites .twb-hospital-card h4 {
  font-size: 24px;
  font-weight: 400;
  color: #1b1b1b;
  margin-bottom: 10px;
  line-height: 34px;
}
.twb-partnerSites .twb-hospital-card p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-partnerSites {
    padding: 50px 0 60px;
  }
  .twb-partnerSites .twb-alphabet-list li a {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
  .twb-partnerSites .twb-country-name {
    font-size: 24px;
  }
  .twb-partnerSites .twb-hospitals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .twb-partnerSites .twb-alphabet-list {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .twb-partnerSites {
    padding: 40px 0 50px;
  }
  .twb-partnerSites .twb-alphabet-list {
    gap: 5px;
  }
  .twb-partnerSites .twb-alphabet-list li a {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .twb-partnerSites .twb-country-name {
    font-size: 22px;
  }
  .twb-partnerSites .twb-hospitals-grid {
    grid-template-columns: 1fr;
  }
  .twb-partnerSites .twb-alphabet-list {
    justify-content: flex-start;
  }
}

.twb-gallerySec {
  padding: 0 0 80px;
}
.twb-gallerySec .twb-gallery-header {
  text-align: center;
  margin-bottom: 48px;
}
.twb-gallerySec .twb-heading h2 {
  text-align: center;
  margin-bottom: 48px;
}
.twb-gallerySec .twb-gallery-grid {
  display: flex;
  margin: 0 -8px;
  margin-bottom: 68px;
}
.twb-gallerySec .twb-gallery-item {
  margin-left: 8px;
  margin-right: 8px;
  width: 45%;
  height: 400px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 24px 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: all 0.5s ease;
  position: relative;
}
.twb-gallerySec .twb-gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.twb-gallerySec .twb-gallery-item {
  box-shadow: inset 0 -160px 80px -20px rgba(0, 0, 0, 0.65);
}
.twb-gallerySec .twb-gallery-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}
.twb-gallerySec .twb-gallery-item .twb-gallery-body {
  display: none;
}
.twb-gallerySec .twb-gallery-item .twb-gallery-body p {
  font-size: 18px;
  color: #ffffff;
  line-height: 28px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  position: relative;
  z-index: 10;
}
.twb-gallerySec .twb-gallery-item.is-active {
  width: 100%;
}
.twb-gallerySec .twb-gallery-item.is-active::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(42, 181, 114, 0.25) 30%, rgba(0, 0, 0, 0.9) 100%);
}
.twb-gallerySec .twb-gallery-item.is-active .twb-gallery-body {
  display: block;
}
.twb-gallerySec .twb-gallery-item.is-active .twb-gallery-body p {
  opacity: 1;
  visibility: visible;
}
.twb-gallerySec .twb-gallery-cta {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-gallerySec {
    padding: 60px 0;
  }
  .twb-gallerySec .twb-gallery-title {
    font-size: 32px;
  }
  .twb-gallerySec .twb-gallery-item {
    height: 280px;
  }
  .twb-gallerySec .twb-gallery-item h3 {
    font-size: 15px;
  }
  .twb-gallerySec .twb-gallery-item .twb-gallery-body h2 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .twb-gallerySec {
    padding: 48px 0;
  }
  .twb-gallerySec .twb-gallery-title {
    font-size: 28px;
  }
  .twb-gallerySec .twb-gallery-header {
    margin-bottom: 32px;
  }
  .twb-gallerySec .twb-gallery-grid {
    flex-direction: column;
    margin: 0;
    margin-bottom: 32px;
  }
  .twb-gallerySec .twb-gallery-item {
    width: 100% !important;
    margin: 6px 0;
    height: 200px;
    padding: 20px;
  }
  .twb-gallerySec .twb-gallery-item.is-active {
    height: 300px;
  }
}

.twb-donateSec {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
}
.twb-donateSec__row {
  display: flex;
  align-items: center;
  gap: 60px;
}
.twb-donateSec__left {
  width: 48%;
  flex-shrink: 0;
}
.twb-donateSec .twb-heading {
  margin-bottom: 24px;
}
.twb-donateSec__desc {
  width: 90%;
}
.twb-donateSec__right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.twb-donateSec__img {
  width: 100%;
  max-width: 405px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-donateSec {
    padding: 60px 0;
  }
  .twb-donateSec__row {
    gap: 40px;
  }
  .twb-donateSec__left {
    width: 50%;
  }
  .twb-donateSec__desc {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-donateSec {
    padding: 60px 0;
  }
  .twb-donateSec__row {
    flex-direction: column;
    gap: 40px;
  }
  .twb-donateSec__left {
    width: 100%;
  }
  .twb-donateSec__desc {
    width: 100%;
  }
  .twb-donateSec__img {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .twb-donateSec {
    padding: 40px 0;
  }
  .twb-donateSec__row {
    flex-direction: column;
    gap: 32px;
  }
  .twb-donateSec__left {
    width: 100%;
  }
  .twb-donateSec__desc {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
  }
  .twb-donateSec__img {
    max-width: 100%;
  }
}
.twb-progresSec {
  width: 100%;
}
.twb-progresSec__row {
  display: flex;
}
.twb-progresSec__card {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.twb-progresSec__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 53.94%, #000000 100%);
}
.twb-progresSec__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.twb-progresSec__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px;
  z-index: 1;
}
.twb-progresSec__number {
  font-size: 46px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
  font-family: "outfit", sans-serif;
}
.twb-progresSec__title {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
}
.twb-progresSec__sub {
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  color: #2ab572;
  margin-bottom: 0;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-progresSec {
    padding: 60px 0;
  }
  .twb-progresSec__card {
    height: 380px;
  }
  .twb-progresSec__number {
    font-size: 44px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-progresSec {
    padding: 60px 0;
  }
  .twb-progresSec__card {
    height: 340px;
  }
  .twb-progresSec__number {
    font-size: 40px;
  }
  .twb-progresSec__content {
    padding: 24px 20px;
  }
}
@media (max-width: 767px) {
  .twb-progresSec {
    padding: 40px 0;
  }
  .twb-progresSec__row {
    flex-direction: column;
    gap: 16px;
  }
  .twb-progresSec__card {
    height: 320px;
  }
  .twb-progresSec__number {
    font-size: 48px;
  }
}
.twb-individualDonate {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
}
.twb-individualDonate .twb-heading {
  text-align: center;
  margin-bottom: 40px;
}
.twb-individualDonate__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}
.twb-individualDonate__img-wrap {
  grid-column: span 2;
  border-radius: 16px;
  overflow: hidden;
}
.twb-individualDonate__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.twb-individualDonate__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
}
.twb-individualDonate__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.twb-individualDonate__icon i {
  font-size: 26px;
  color: #ffffff;
}
.twb-individualDonate__icon--dollar {
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
}
.twb-individualDonate__icon--dollar i {
  font-size: 40px;
  color: #2ab572;
}
.twb-individualDonate__icon--usb {
  background: #e8417a;
}
.twb-individualDonate__icon--pi {
  background: #2ab572;
}
.twb-individualDonate__icon--computer {
  background: #4a8fe8;
}
.twb-individualDonate__name {
  font-size: 16px;
  font-weight: 600;
  color: #1b1b1b;
  margin-bottom: 0;
}
.twb-individualDonate .twb-btn--outline {
  min-width: 180px;
}
.twb-individualDonate__sponsor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.twb-individualDonate__sponsor .twb-individualDonate__btn {
  font-size: 16px;
  padding: 10px 40px;
}
.twb-individualDonate__sponsor-title {
  font-size: 20px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 0;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-individualDonate {
    padding: 60px 0;
  }
  .twb-individualDonate__card {
    padding: 24px 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-individualDonate {
    padding: 60px 0;
  }
  .twb-individualDonate__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .twb-individualDonate__img-wrap {
    grid-column: span 2;
  }
  .twb-individualDonate__subtitle {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .twb-individualDonate {
    padding: 40px 0;
  }
  .twb-individualDonate__grid {
    grid-template-columns: 1fr;
  }
  .twb-individualDonate__img-wrap {
    grid-column: span 1;
    height: 220px;
  }
  .twb-individualDonate__subtitle {
    font-size: 20px;
  }
  .twb-individualDonate__sponsor-title {
    font-size: 17px;
    text-align: center;
  }
}
.twb-businessSec {
  width: 100%;
  padding: 130px 0;
}
.twb-businessSec__row {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}
.twb-businessSec__left {
  width: 48%;
  flex-shrink: 0;
}
.twb-businessSec__left .twb-heading {
  margin-bottom: 40px;
}
.twb-businessSec__item {
  margin-bottom: 42px;
  border-bottom: 1px solid rgb(238, 238, 238);
  padding-bottom: 35px;
}
.twb-businessSec__img-wrap {
  border-radius: 30px;
  overflow: hidden;
}
.twb-businessSec__img-wrap img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.twb-businessSec__right {
  flex: 1;
  padding-top: 8px;
}
.twb-businessSec__right .twb-businessSec__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.twb-businessSec__item-head {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.twb-businessSec__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border: 1px solid rgb(243, 245, 249);
  border-radius: 10px;
  padding: 8px;
  background-color: rgb(248, 250, 251);
}
.twb-businessSec__icon img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.twb-businessSec__item-title {
  font-size: 22px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 8px;
}
.twb-businessSec__list {
  list-style: none;
  margin-bottom: 0;
}
.twb-businessSec__list li {
  font-size: 18px;
  line-height: 28px;
  color: #6b7280;
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}
.twb-businessSec__list li:last-child {
  margin-bottom: 0;
}
.twb-businessSec__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6b7280;
  font-size: 12px;
  top: 1px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-businessSec {
    padding: 60px 0;
  }
  .twb-businessSec__row {
    gap: 48px;
  }
  .twb-businessSec__left {
    width: 44%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-businessSec {
    padding: 60px 0;
  }
  .twb-businessSec__row {
    flex-direction: column;
    gap: 40px;
  }
  .twb-businessSec__left {
    width: 100%;
  }
  .twb-businessSec__img-wrap img {
    height: 260px;
  }
}
@media (max-width: 767px) {
  .twb-businessSec {
    padding: 40px 0;
  }
  .twb-businessSec__row {
    flex-direction: column;
    gap: 32px;
  }
  .twb-businessSec__left {
    width: 100%;
  }
  .twb-businessSec__img-wrap img {
    height: 220px;
  }
  .twb-businessSec__item-title {
    font-size: 17px;
  }
  .twb-businessSec .twb-businessSec__item-head {
    gap: 10px;
  }
}
.twb-pastProjects {
  width: 100%;
  padding: 30px 0 80px;
}
.twb-pastProjects.mtp-80 {
  padding: 80px 0;
}
.twb-pastProjects .twb-heading h2 {
  margin-bottom: 24px;
  text-align: center;
}
.twb-pastProjects__subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 20px;
}
.twb-pastProjects__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.twb-pastProjects__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  font-weight: 400;
  color: #1b1b1b;
}
.twb-pastProjects__tag svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}
.twb-pastProjects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  row-gap: 44px;
  margin-top: 40px;
}
.twb-pastProjects__img-wrap {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
}
.twb-pastProjects__img-wrap img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.twb-pastProjects__card:hover .twb-pastProjects__img-wrap img {
  transform: scale(1.04);
}
.twb-pastProjects__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #2ab572;
  line-height: 30px;
  margin-bottom: 0;
  font-family: "Oxygen", sans-serif;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-pastProjects {
    padding: 60px 0;
  }
  .twb-pastProjects__subtitle {
    font-size: 24px;
  }
  .twb-pastProjects__img-wrap img {
    height: 190px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-pastProjects {
    padding: 60px 0;
  }
  .twb-pastProjects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .twb-pastProjects__subtitle {
    font-size: 22px;
  }
  .twb-pastProjects__tags {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .twb-pastProjects {
    padding: 40px 0;
  }
  .twb-pastProjects__head {
    margin-bottom: 32px;
  }
  .twb-pastProjects__subtitle {
    font-size: 18px;
  }
  .twb-pastProjects__tags {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .twb-pastProjects__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .twb-pastProjects__img-wrap img {
    height: 220px;
  }
}
.twb-reportSec {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0 100px;
  height: 100%;
}
.twb-reportSec .twb-heading h2 {
  color: #ffffff;
  margin-bottom: 45px;
}
.twb-reportSec__cards {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
.twb-reportSec__card {
  flex: 1;
  background: #ffffff;
  border-radius: 14px;
  padding: 38px 24px;
  transition: all 0.3s ease;
}
.twb-reportSec__card:hover {
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1019607843), 0px 4px 6px -1px rgba(0, 0, 0, 0.1019607843);
  transform: translateY(-6px);
}
.twb-reportSec__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 4px;
  font-family: "Oxygen", sans-serif;
}
.twb-reportSec__card-date {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #2ab572;
  margin-bottom: 12px;
  display: inline-block;
}
.twb-reportSec__card-desc {
  color: #6b7280;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.twb-reportSec__card-link {
  font-size: 14px;
  line-height: 20px;
  color: #2ab572;
  transition: color 0.3s;
  display: inline-block;
}
.twb-reportSec__card-link svg {
  width: 18px;
  height: 18px;
  margin: 0 0 3px 4px;
}
.twb-reportSec__card-link:hover {
  color: #2ab572;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-reportSec {
    padding: 60px 0;
  }
  .twb-reportSec__heading {
    font-size: 32px;
  }
  .twb-reportSec__card {
    padding: 24px 18px;
  }
  .twb-reportSec__card-title {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-reportSec {
    padding: 60px 0;
  }
  .twb-reportSec__heading {
    font-size: 28px;
    margin-bottom: 28px;
  }
  .twb-reportSec__cards {
    flex-wrap: wrap;
  }
  .twb-reportSec__card {
    flex: 1 1 calc(25% - 8px);
  }
}
@media (max-width: 767px) {
  .twb-reportSec {
    padding: 40px 0;
  }
  .twb-reportSec__heading {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .twb-reportSec__cards {
    flex-direction: column;
    gap: 12px;
  }
  .twb-reportSec__card {
    flex: none;
    width: 100%;
  }
}
.twb-meetTeam {
  width: 100%;
  padding: 80px 0;
}
.twb-meetTeam .twb-heading h2 {
  text-align: center;
}
.twb-meetTeam .twb-heading p {
  text-align: center;
  margin: 16px 0 35px;
}
.twb-meetTeam .twb-btn--outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.twb-meetTeam__group:last-child {
  margin-bottom: 0;
}
.twb-meetTeam__group-title {
  font-size: 36px;
  font-weight: 700;
  color: #1b1b1b;
  font-family: "Oxygen", sans-serif;
  text-align: center;
}
.twb-meetTeam p.cnt {
  text-align: center;
  margin: 16px 0 36px;
}
.twb-meetTeam__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(100% - 75px);
  margin: 0 auto;
  padding: 70px 0 0;
}
.twb-meetTeam .twb-card {
  width: calc(25% - 100px);
  margin: 0 50px;
  margin-bottom: 64px;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-meetTeam {
    padding: 60px 0;
  }
  .twb-meetTeam__group-title {
    font-size: 28px;
  }
  .twb-meetTeam__grid {
    width: 100%;
    gap: 28px;
  }
  .twb-meetTeam__grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .twb-meetTeam .twb-card {
    width: calc(30% - 100px);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-meetTeam {
    padding: 60px 0;
  }
  .twb-meetTeam__group {
    margin-bottom: 48px;
  }
  .twb-meetTeam__group-title {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .twb-meetTeam__grid {
    width: 100%;
  }
  .twb-meetTeam__grid .twb-card {
    width: calc(50% - 100px);
  }
}
@media (max-width: 767px) {
  .twb-meetTeam {
    padding: 40px 0;
  }
  .twb-meetTeam__head {
    margin-bottom: 32px;
  }
  .twb-meetTeam__group {
    margin-bottom: 40px;
  }
  .twb-meetTeam__group-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .twb-meetTeam__grid {
    width: 100%;
  }
  .twb-meetTeam__grid .twb-card {
    width: calc(100% - 100px);
  }
}
.twb-volunteerSec {
  width: 100%;
  margin: 0 0 60px;
}
.twb-volunteerSec__inner {
  display: flex;
  align-items: stretch;
  border-radius: 24px;
  overflow: hidden;
  background-color: #f8fafb;
}
.twb-volunteerSec__left {
  width: 46%;
  flex-shrink: 0;
  padding: 54px;
}
.twb-volunteerSec__left .twb-heading {
  margin-bottom: 38px;
}
.twb-volunteerSec__item {
  padding-left: 14px;
}
.twb-volunteerSec__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.twb-volunteerSec__item-title {
  font-size: 24px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 10px;
}
.twb-volunteerSec__right {
  flex: 1;
  padding: 54px 42px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.twb-volunteerSec__cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #2ab572;
  margin-bottom: 18px;
}
.twb-volunteerSec__cta-desc {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 20px;
}
.twb-volunteerSec .twb-btn--outline svg {
  margin-left: 10px;
}
.twb-volunteerSec__img-wrap {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
}
.twb-volunteerSec__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-volunteerSec__left {
    width: 48%;
    padding: 48px 36px;
  }
  .twb-volunteerSec__right {
    padding: 48px 36px;
  }
  .twb-volunteerSec__heading {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-volunteerSec {
    padding: 40px 0;
  }
  .twb-volunteerSec__inner {
    flex-direction: column;
    border-radius: 16px;
  }
  .twb-volunteerSec__left {
    width: 100%;
    padding: 40px 32px;
  }
  .twb-volunteerSec__right {
    padding: 40px 32px;
  }
  .twb-volunteerSec__heading {
    font-size: 26px;
    margin-bottom: 28px;
  }
  .twb-volunteerSec__img-wrap {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .twb-volunteerSec {
    padding: 32px 0;
  }
  .twb-volunteerSec__inner {
    border-radius: 12px;
  }
  .twb-volunteerSec__left {
    padding: 32px 24px;
  }
  .twb-volunteerSec__right {
    padding: 32px 24px;
    gap: 24px;
  }
  .twb-volunteerSec__heading {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .twb-volunteerSec__cta-title {
    font-size: 20px;
  }
  .twb-volunteerSec__img-wrap {
    height: 220px;
  }
  .twb-volunteerSec__inner {
    flex-direction: column;
    gap: 40px;
  }
  .twb-volunteerSec__left,
  .twb-volunteerSec__right {
    width: 100%;
    padding: 0;
  }
}
.twb-footerBnnr {
  width: 100%;
  padding: 60px 0;
}
.twb-footerBnnr__inner {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  background-position: center left;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  min-height: 450px;
}
.twb-footerBnnr__content {
  position: relative;
  z-index: 1;
  margin-left: auto;
  width: 40%;
  padding: 56px 60px 56px 40px;
}
.twb-footerBnnr__title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  font-family: "Oxygen", sans-serif;
  line-height: 52px;
  margin-bottom: 16px;
}
.twb-footerBnnr__desc {
  font-size: 15px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  max-width: 380px;
}
.twb-footerBnnr__btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.twb-footerBnnr__zeffy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #00006d;
  border-radius: 30px;
  padding: 13px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  transition: background 0.3s;
  white-space: nowrap;
  padding: 16px 24px;
}
.twb-footerBnnr__zeffy-btn:hover {
  background-color: #162a5e;
  color: #ffffff;
}
.twb-footerBnnr__zeffy-brand {
  font-weight: 700;
  background: linear-gradient(90deg, #2ab572 0%, #4a8fe8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.twb-footerBnnr__zeffy-brand sup {
  font-size: 10px;
}
.twb-footerBnnr__or {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}
.twb-footerBnnr__or span {
  color: #2ab572;
  font-weight: 600;
}
.twb-footerBnnr__address-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.twb-footerBnnr__address-link:hover {
  color: #2ab572;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-footerBnnr__title {
    font-size: 34px;
    line-height: 44px;
  }
  .twb-footerBnnr__content {
    width: 58%;
    padding: 48px 48px 48px 32px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-footerBnnr {
    padding: 40px 0;
  }
  .twb-footerBnnr__inner {
    min-height: 300px;
  }
  .twb-footerBnnr__inner::after {
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 20%, rgba(15, 20, 45, 0.88) 45%, rgba(15, 20, 45, 0.98) 100%);
  }
  .twb-footerBnnr__content {
    width: 65%;
    padding: 40px 36px 40px 24px;
  }
  .twb-footerBnnr__title {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .twb-footerBnnr {
    padding: 32px 0;
  }
  .twb-footerBnnr__inner {
    min-height: 480px;
    background-position: center top;
  }
  .twb-footerBnnr__inner::after {
    background: linear-gradient(to bottom, rgba(15, 20, 45, 0.3) 0%, rgba(15, 20, 45, 0.96) 40%);
  }
  .twb-footerBnnr__content {
    width: 100%;
    margin-left: 0;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 480px;
  }
  .twb-footerBnnr__title {
    font-size: 28px;
    line-height: 36px;
  }
  .twb-footerBnnr__btns {
    flex-direction: column;
    align-items: flex-start;
  }
}
.twb-footer {
  width: 100%;
}
.twb-footer__banner {
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ffffff;
  padding: 28px 0;
}
.twb-footer__banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.twb-footer__logo {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.twb-footer__banner-text {
  font-size: 18px;
  font-weight: 500;
  color: #6b7280;
  line-height: 28px;
  margin-bottom: 0;
}
.twb-footer__main {
  background: linear-gradient(90deg, #0d2a8a 0%, #1870c8 50%, #00b078 100%);
  padding: 56px 0;
}
.twb-footer__nav {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.twb-footer__col {
  flex: 1;
}
.twb-footer__col-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: "Outfit", sans-serif;
}
.twb-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.twb-footer__list li a {
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s;
}
.twb-footer__list li a:hover {
  color: #ffffff;
}
.twb-footer__social {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 4px;
  flex-shrink: 0;
}
.twb-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.twb-footer__social-link:hover {
  opacity: 1;
}
.twb-footer__bottom {
  background-color: #00172E;
  padding: 18px 0;
}
.twb-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.twb-footer__legal {
  display: flex;
  align-items: center;
  gap: 10px;
}
.twb-footer__legal a {
  font-size: 13px;
  color: #7F7F7F;
  transition: color 0.3s;
}
.twb-footer__legal a:hover {
  color: #ffffff;
}
.twb-footer__legal-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
}
.twb-footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
  text-align: center;
}
.twb-footer__powered {
  display: flex;
  align-items: center;
  gap: 8px;
}
.twb-footer__powered span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}
.twb-footer__powered img {
  height: 17px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-footer__nav {
    gap: 20px;
  }
  .twb-footer__col-title {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-footer__banner-text {
    font-size: 16px;
  }
  .twb-footer__nav {
    flex-wrap: wrap;
    gap: 32px 24px;
  }
  .twb-footer__col {
    flex: 1 1 calc(33.333% - 24px);
  }
  .twb-footer__social {
    flex-direction: row;
    width: 100%;
    gap: 20px;
  }
  .twb-footer__bottom-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .twb-footer__banner {
    padding: 20px 0;
    background-position: left;
  }
  .twb-footer__logo {
    width: 64px;
    height: 64px;
  }
  .twb-footer__banner-text {
    font-size: 14px;
    line-height: 22px;
  }
  .twb-footer__main {
    padding: 40px 0;
  }
  .twb-footer__nav {
    flex-direction: column;
    gap: 28px;
  }
  .twb-footer__col {
    flex: none;
    width: 100%;
  }
  .twb-footer__social {
    flex-direction: row;
    gap: 20px;
  }
  .twb-footer__bottom-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
}
.twb-innrBnnr {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 550px;
  display: flex;
  align-items: center;
  position: relative;
}
.twb-innrBnnr::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.176) 0%, rgba(0, 12, 31, 0.8) 100%);
}
.twb-innrBnnr .content-wrapper {
  position: relative;
  z-index: 1;
}
.twb-innrBnnr__title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  font-family: "Oxygen", sans-serif;
  letter-spacing: 0.06em;
  margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.twb-innrBnnr p {
  text-align: center;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .twb-innrBnnr {
    min-height: 180px;
  }
  .twb-innrBnnr__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .twb-innrBnnr {
    min-height: 350px;
  }
  .twb-innrBnnr__title {
    font-size: 22px;
  }
}
.twb-strategicSec {
  width: 100%;
  padding: 60px 0;
}
.twb-strategicSec .twb-heading h2 {
  text-align: center;
  margin: 0 0 30px;
}
.twb-strategicSec__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.twb-strategicSec__goal {
  padding: 32px 0px 10px;
}
.twb-strategicSec__goal:last-child {
  border-bottom: none;
}
.twb-strategicSec__goal-title {
  color: #2ab572;
  font-family: "Oxygen", sans-serif;
  line-height: 1.5;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #a9a9a9;
  font-size: 24px;
  font-weight: 700;
}
.twb-strategicSec__actions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.twb-strategicSec__action {
  font-size: 18px;
  display: flex;
  gap: 6px;
  align-items: baseline;
}
.twb-strategicSec__action-label {
  font-weight: 500;
  color: #2ab572;
  white-space: nowrap;
  flex-shrink: 0;
}
.twb-strategicSec__action-text {
  color: #6b7280;
  width: 90%;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-strategicSec {
    padding: 60px 0 80px;
  }
  .twb-strategicSec__title {
    font-size: 28px;
  }
  .twb-strategicSec__goal-title {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-strategicSec {
    padding: 60px 0;
  }
  .twb-strategicSec__title {
    font-size: 26px;
  }
  .twb-strategicSec__goal {
    padding: 28px 0;
  }
  .twb-strategicSec__goal-title {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .twb-strategicSec {
    padding: 40px 0;
  }
  .twb-strategicSec__header {
    padding-bottom: 24px;
    margin-bottom: 32px;
  }
  .twb-strategicSec__title {
    font-size: 22px;
  }
  .twb-strategicSec__goal {
    padding: 24px 0;
  }
  .twb-strategicSec__goal-title {
    font-size: 15px;
  }
  .twb-strategicSec__action {
    font-size: 13px;
    flex-direction: column;
    gap: 2px;
  }
}



twb-pdfViewer {
  width: 100%;
}
.twb-pdfViewer__wrap {
  padding: 80px 0;
  background: linear-gradient(101.89deg, #ebf6ff 0.6%, #eeeeee 99.4%);
}
.twb-pdfViewer .content-wrapper {
  position: relative;
  z-index: 20;
}
.twb-pdfViewer__nav {
  background-color: #ffffff;
  padding: 100px 0 40px;
  position: relative;
}
.twb-pdfViewer__nav::before, .twb-pdfViewer__nav::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 300px;
  z-index: 2;
  pointer-events: none;
}
.twb-pdfViewer__nav .splide {
  width: 75%;
  margin: auto;
}
.twb-pdfViewer__nav .splide__arrow {
  background: transparent;
  border: 1px solid #000000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: border-color 0.3s;
  z-index: 20;
}
.twb-pdfViewer__nav .splide__arrow svg {
  fill: #000000;
  width: 14px;
  height: 14px;
}
.twb-pdfViewer__nav .splide__arrow:hover {
  border-color: #2ab572;
}
.twb-pdfViewer__nav .splide__arrow:hover svg {
  fill: #2ab572;
}
.twb-pdfViewer__nav .splide__arrow--prev {
  left: -4%;
}
.twb-pdfViewer__nav .splide__arrow--next {
  right: -4%;
}
.twb-pdfViewer__nav .splide__track {
  padding: 4px 48px;
}
.twb-pdfViewer__nav .splide__list {
  align-items: center;
}
.twb-pdfViewer__year-btn {
  background: transparent;
  border: 1px solid #7f7f7f;
  color: #b9b9b9;
  border-radius: 50px;
  padding: 16px 65px;
  font-size: 32px;
  font-family: "Oxygen", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  z-index: 10;
}
.twb-pdfViewer__year-btn:hover {
  border-color: #2ab572;
  color: #2ab572;
}
.twb-pdfViewer__year-btn.is-active {
  background-color: #2ab572;
  border-color: #2ab572;
  color: #ffffff;
  font-weight: 600;
}
.twb-pdfViewer__viewer {
  display: flex;
  justify-content: center;
}
.twb-pdfViewer__frame-wrap {
  position: relative;
  border: 2px solid #0097a7;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  background: #1a6ea0;
  height: 700px;
}
.twb-pdfViewer__frame-wrap iframe {
  height: 700px;
}
.twb-pdfViewer__external {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #303030;
  border-radius: 4px;
  color: #ffffff;
  transition: background 0.25s ease;
}
.twb-pdfViewer__external svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.twb-pdfViewer__external:hover {
  background: #2ab572;
}
.twb-pdfViewer__iframe {
  width: 100%;
  height: 520px;
  display: block;
  border: none;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-pdfViewer__iframe {
    height: 480px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-pdfViewer__frame-wrap {
    max-width: 100%;
  }
  .twb-pdfViewer__iframe {
    height: 460px;
  }
}
@media (max-width: 767px) {
  .twb-pdfViewer__nav {
    margin-bottom: 28px;
  }
  .twb-pdfViewer__nav .splide__track {
    padding: 4px 40px;
  }
  .twb-pdfViewer__year-btn {
    font-size: 14px;
    padding: 6px 20px;
  }
  .twb-pdfViewer__frame-wrap {
    max-width: 100%;
  }
  .twb-pdfViewer__iframe {
    height: 400px;
  }
  .twb-pdfViewer__nav::before,
  .twb-pdfViewer__nav::after {
    display: none;
  }
  .twb-pdfViewer__nav {
    padding: 60px 0 30px;
  }
  .twb-pdfViewer__nav .splide {
    width: 100%;
    margin: auto;
    padding: 0 20px;
  }
  .twb-pdfViewer__nav .splide__arrow {
    width: 28px;
    height: 28px;
  }
  .twb-pdfViewer__nav .splide__arrow--prev {
    left: 2%;
  }
  .twb-pdfViewer__nav .splide__arrow--next {
    right: 2%;
  }
}
.twb-contactSec {
  width: 100%;
  background-color: #ffffff;
  padding: 100px 0;
}
.twb-contactSec .twb-heading h2 {
  margin-bottom: 16px;
}
.twb-contactSec__inner {
  display: flex;
  align-items: stretch;
  gap: 60px;
  align-items: start;
}
.twb-contactSec__left {
  width: 50%;
}
.twb-contactSec__right {
  width: 50%;
}
.twb-contactSec__title {
  font-size: 40px;
  font-weight: 700;
  color: #2ab572;
  font-family: "Oxygen", sans-serif;
  line-height: 1.2;
  margin-bottom: 12px;
}
.twb-contactSec__desc {
  font-size: 18px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 28px;
}
.twb-contactSec__img-wrap {
  border-radius: 62px;
  overflow: hidden;
}
.twb-contactSec__img-wrap img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.twb-contactSec__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.twb-contactSec__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.twb-contactSec__label {
  font-size: 14px;
  font-weight: 500;
  color: #1b1b1b;
  line-height: 1;
}
.twb-contactSec__input, .twb-contactSec__textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #1b1b1b;
  background: #ffffff;
  outline: none;
  transition: border-color 0.25s ease;
  font-family: "Oxygen", sans-serif;
}
.twb-contactSec__input::-moz-placeholder, .twb-contactSec__textarea::-moz-placeholder {
  color: #9ca3af;
}
.twb-contactSec__input::placeholder, .twb-contactSec__textarea::placeholder {
  color: #9ca3af;
}
.twb-contactSec__input:focus, .twb-contactSec__textarea:focus {
  border-color: #2ab572;
}
.twb-contactSec__textarea {
  resize: vertical;
  min-height: 120px;
}
.twb-contactSec__btn {
  width: 100%;
  padding: 8px 24px;
  background-color: #2ab572;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Oxygen", sans-serif;
  cursor: pointer;
  transition: background-color 0.25s ease;
  margin-top: 4px;
}
.twb-contactSec__btn:hover {
  background-color: rgb(34.3156950673, 147.8843049327, 93.1426008969);
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-contactSec {
    padding: 60px 0;
  }
  .twb-contactSec__inner {
    gap: 40px;
  }
  .twb-contactSec__title {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-contactSec {
    padding: 60px 0;
  }
  .twb-contactSec__inner {
    gap: 40px;
  }
  .twb-contactSec__img-wrap img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .twb-contactSec {
    padding: 40px 0;
  }
  .twb-contactSec__inner {
    flex-direction: column;
    gap: 32px;
  }
  .twb-contactSec__title {
    font-size: 28px;
  }
  .twb-contactSec__img-wrap img {
    height: 220px;
  }
  .twb-contactSec__left {
    width: 100%;
  }
  .twb-contactSec__right {
    width: 100%;
  }
}
.twb-privacySec {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0;
}
.twb-privacySec__intro {
  color: #6b7280;
  margin-bottom: 36px;
}
.twb-privacySec__block {
  margin-bottom: 36px;
}
.twb-privacySec__block:last-child {
  margin-bottom: 0;
}
.twb-privacySec__heading {
  font-size: 24px;
  font-weight: 700;
  color: #2ab572;
  font-family: "Oxygen", sans-serif;
  margin-bottom: 17px;
}
.twb-privacySec__divider {
  border: none;
  border-top: 1.5px solid #a9a9a9;
  margin: 0 0 30px;
}
.twb-privacySec__text {
  color: #6b7280;
  margin-bottom: 12px;
}
.twb-privacySec__text:last-child {
  margin-bottom: 0;
}
.twb-privacySec__list {
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.twb-privacySec__list li {
  color: #6b7280;
  list-style-type: disc;
}
.twb-privacySec__link {
  color: #2ab572;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
.twb-privacySec__link:hover {
  opacity: 0.75;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-privacySec {
    padding: 60px 0 80px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-privacySec {
    padding: 60px 0;
  }
  .twb-privacySec__heading {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .twb-privacySec {
    padding: 40px 0;
  }
  .twb-privacySec__heading {
    font-size: 18px;
  }
  .twb-privacySec__intro, .twb-privacySec__text, .twb-privacySec__list li {
    font-size: 14px;
  }
  .twb-privacySec__block {
    margin-bottom: 28px;
  }
}
.twb-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.twb-header.is-hidden {
  transform: translateY(-100%);
}
.twb-header__container {
  width: 100%;
  max-width: 1475px;
  margin: 0 auto;
}
.twb-header__nav {
  border: 0;
}
.twb-header__logo {
  display: flex;
  align-items: center;
  padding: 0;
}
.twb-header__logo img {
  height: 80px;
  width: auto;
  display: block;
}
.twb-header .navbar {
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  padding: 5px 30px;
  margin: 40px 0 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.twb-header__list {
  gap: 10px;
  margin-right: 20px;
}
.twb-header__item {
  position: relative;
}
.twb-header__link {
  font-size: 16px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  color: #1b1b1b;
  text-transform: uppercase;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.twb-header__link:hover, .twb-header__link.active {
  color: #2ab572;
}
.twb-header__link--drop {
  cursor: pointer;
}
.twb-header__caret {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.dropdown.show .twb-header__caret, .dropdown:hover .twb-header__caret {
  transform: rotate(180deg);
}
.twb-header__dropdown {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 8px;
  min-width: 180px;
  margin-top: 8px !important;
}
.twb-header__dropdown-item {
  font-size: 16px;
  font-weight: 500;
  color: #1b1b1b;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}
.twb-header__dropdown-item:hover, .twb-header__dropdown-item:focus {
  background-color: #f0fdf4;
  color: #2ab572;
}
.twb-header__item--btn {
  margin-left: 8px;
}
.twb-header__donate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #2ab572;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  padding: 10px 22px;
  border-radius: 50px;
  transition: background-color 0.25s ease;
  white-space: nowrap;
}
.twb-header__donate svg {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}
.twb-header__donate:hover {
  background-color: rgb(34.3156950673, 147.8843049327, 93.1426008969);
  color: #ffffff;
}
.twb-header__toggler {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.twb-header__toggler:focus {
  box-shadow: none;
}
.twb-header__toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1b1b1b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.twb-header .dropdown-toggle::after {
  display: none;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .twb-header__link {
    font-size: 13px;
    padding: 8px 10px;
  }
  .twb-header__logo img {
    height: 42px;
  }
}
@media (max-width: 1023px) {
  .twb-header__nav {
    padding: 14px 0;
  }
  .twb-header__collapse {
    background: #ffffff;
    padding: 16px;
    border-top: 1px solid #e5e7eb;
    margin-top: 12px;
    border-radius: 20px;
  }
  .twb-header__list {
    gap: 0;
    align-items: flex-start !important;
  }
  .twb-header__link {
    padding: 12px 0;
    font-size: 15px;
  }
  .twb-header__dropdown {
    box-shadow: none;
    border: none;
    border-left: 2px solid #2ab572;
    border-radius: 0;
    padding: 4px 0 4px 12px;
    margin-top: 0 !important;
  }
  .twb-header__item--btn {
    margin-left: 0;
    margin-top: 12px;
  }
  .twb-header__donate {
    width: 100%;
    justify-content: center;
  }
  .twb-header__logo img {
    height: 70px;
  }
}
.twb-gallerySec {
  padding: 0 0 80px;
}
.twb-gallerySec .twb-gallery-header {
  text-align: center;
  margin-bottom: 48px;
}
.twb-gallerySec .twb-heading h2 {
  text-align: center;
  margin-bottom: 48px;
}
.twb-gallerySec .twb-gallery.splide {
  position: relative;
  margin-bottom: 68px;
}
.twb-gallerySec .twb-gallery.splide::before, .twb-gallerySec .twb-gallery.splide::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 9%;
  min-width: 48px;
  z-index: 3;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.twb-gallerySec .twb-gallery.splide::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
  mask-image: linear-gradient(to right, #000 0%, #000 35%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 35%, transparent 100%);
}
.twb-gallerySec .twb-gallery.splide::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
  mask-image: linear-gradient(to left, #000 0%, #000 35%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, #000 0%, #000 35%, transparent 100%);
}
.twb-gallerySec .splide__track {
  overflow: hidden;
  border-radius: 20px;
}
.twb-gallerySec .twb-gallery-item {
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 24px 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  box-shadow: inset 0 -160px 80px -20px rgba(0, 0, 0, 0.65);
}
.twb-gallerySec .twb-gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.twb-gallerySec .twb-gallery-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}
.twb-gallerySec .twb-gallery-item .twb-gallery-body {
  position: relative;
  z-index: 10;
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.twb-gallerySec .twb-gallery-item .twb-gallery-body p {
  font-size: 18px;
  color: #ffffff;
  line-height: 28px;
  margin: 0;
}
.twb-gallerySec .splide__slide.twb-gallery-item {
  height: 400px;
  cursor: grab;
  opacity: 0.45;
  transform: scale(0.9);
  filter: saturate(0.85);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}
.twb-gallerySec .splide__slide.twb-gallery-item.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
}
.twb-gallerySec .splide__slide.twb-gallery-item.is-active::before {
  opacity: 1;
}
.twb-gallerySec .splide__slide.twb-gallery-item.is-active .twb-gallery-body {
  opacity: 1;
  transform: translateY(0);
}
.twb-gallerySec .splide.is-dragging .splide__slide.twb-gallery-item {
  cursor: grabbing;
}
.twb-gallerySec .twb-gallery-cta {
  text-align: center;
  margin-top: 60px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twb-gallerySec {
    padding: 60px 0;
  }
  .twb-gallerySec .twb-gallery-title {
    font-size: 32px;
  }
  .twb-gallerySec .splide__slide.twb-gallery-item {
    height: 320px;
  }
  .twb-gallerySec .splide__slide.twb-gallery-item h3 {
    font-size: 15px;
  }
  .twb-gallerySec .splide__slide.twb-gallery-item .twb-gallery-body p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .twb-gallerySec {
    padding: 48px 0;
  }
  .twb-gallerySec .twb-gallery-title {
    font-size: 28px;
  }
  .twb-gallerySec .twb-gallery-header {
    margin-bottom: 32px;
  }
  .twb-gallerySec .twb-gallery.splide {
    margin-bottom: 32px;
  }
  .twb-gallerySec .twb-gallery.splide::before, .twb-gallerySec .twb-gallery.splide::after {
    width: 24px;
    min-width: 24px;
  }
  .twb-gallerySec .splide__slide.twb-gallery-item {
    height: 260px;
    padding: 20px;
    opacity: 1;
    transform: none;
  }
  .twb-gallerySec .splide__slide.twb-gallery-item::before {
    opacity: 1;
  }
  .twb-gallerySec .splide__slide.twb-gallery-item .twb-gallery-body {
    opacity: 1;
    transform: none;
  }
}
.twb-project-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}
.twb-project-modal.is-open {
    display: block;
}
.twb-project-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.twb-project-modal__dialog {
    position: relative;
    max-width: 700px;
    margin: 5vh auto;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    max-height: 90vh;
    overflow-y: auto;
}
.twb-project-modal__close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}
body.twb-modal-open {
    overflow: hidden;
}
.twb-pastProjects__card {
    cursor: pointer;
}
.twb-project-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.twb-project-modal.is-open {
    display: flex;
}

.twb-project-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.twb-project-modal__dialog {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 640px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalPop 0.25s ease;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}

.twb-project-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s ease;
}

.twb-project-modal__close:hover {
    background: #fff;
}

.twb-project-modal__img-wrap {
    width: 100%;
    max-height: 320px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.twb-project-modal__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.twb-project-modal__title {
    font-size: 22px;
    font-weight: 600;
    margin: 24px 28px 8px;
    color: #1a1a1a;
}

.twb-project-modal__content {
    margin: 0 28px 28px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.twb-project-modal__content p {
    margin-bottom: 1em;
}

body.twb-modal-open {
    overflow: hidden;
}

.twb-pastProjects__card {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.twb-pastProjects__card:hover {
    transform: translateY(-4px);
}

@media (max-width: 600px) {
    .twb-project-modal__dialog {
        max-height: 90vh;
    }
    .twb-project-modal__title {
        font-size: 18px;
        margin: 20px 20px 6px;
    }
    .twb-project-modal__content {
        margin: 0 20px 20px;
    }
}
.group-descres
{
text-align: center;
    margin: 16px 0 35px;	
}

.twb-heading-wrap .twb-heading {
    margin-bottom: 0;
}

.twb-heading-wrap{
	margin-bottom:40px;
	align-items:center;
}