@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --ba26-heading-color: #053771;
  --ba26-font-family-base: Barlow, sans-serif;
  --ba26-primary: #00A5A2;
  --ba26-primary-5: #F7FCFC;
  --ba26-primary-25: #D5F0F0;
  --ba26-primary-50: #AAE1E0;
  --ba26-primary-100: #80D2D1;
  --ba26-primary-200: #55C3C1;
  --ba26-primary-300: #2BB4B2;
  --ba26-primary-400: #00A5A2;
  --ba26-primary-500: #008D8B;
  --ba26-primary-600: #007674;
  --ba26-primary-700: #005E5D;
  --ba26-primary-800: #004745;
  --ba26-primary-900: #002F2E;
  --ba26-primary-950: #001817;
  --ba26-secondary: #053771;
  --ba26-secondary-5: #F7F9FB;
  --ba26-secondary-25: #F0F4F7;
  --ba26-secondary-50: #D2DBE5;
  --ba26-secondary-100: #ACBCD0;
  --ba26-secondary-200: #90A6C0;
  --ba26-secondary-300: #7490B0;
  --ba26-secondary-400: #587AA0;
  --ba26-secondary-500: #3D6391;
  --ba26-secondary-600: #214D81;
  --ba26-secondary-700: #053771;
  --ba26-secondary-800: #042C5A;
  --ba26-secondary-900: #032144;
  --ba26-secondary-950: #02162D;
  --ba26-gray: #35383F;
  --ba26-gray-25: #EDEEF0;
  --ba26-gray-50: #DEE0E3;
  --ba26-gray-100: #C9CCD1;
  --ba26-gray-200: #B6BAC2;
  --ba26-gray-300: #999DA6;
  --ba26-gray-400: #878C96;
  --ba26-gray-500: #767C86;
  --ba26-gray-600: #666D77;
  --ba26-gray-700: #595F69;
  --ba26-gray-800: #4D525B;
  --ba26-gray-900: #41454D;
  --ba26-gray-950: #35383F;
  --ba26-warning: #f0ad4e;
  --ba26-warning-25: #FFFCF5;
  --ba26-warning-50: #FFFAEB;
  --ba26-warning-100: #FEF0C7;
  --ba26-warning-200: #FEDF89;
  --ba26-warning-300: #FEC84B;
  --ba26-warning-400: #FDB022;
  --ba26-warning-500: #F79009;
  --ba26-warning-600: #DC6803;
  --ba26-warning-700: #B54708;
  --ba26-warning-800: #93370D;
  --ba26-warning-900: #7A2E0E;
  --ba26-warning-950: #4E1D09;
  --ba26-success: #5cb85c;
  --ba26-success-25: #F6FEF9;
  --ba26-success-50: #ECFDF3;
  --ba26-success-100: #DCFAE6;
  --ba26-success-200: #ABEFC6;
  --ba26-success-300: #75E0A7;
  --ba26-success-400: #47CD89;
  --ba26-success-500: #17B26A;
  --ba26-success-600: #079455;
  --ba26-success-700: #067647;
  --ba26-success-800: #085D3A;
  --ba26-success-900: #074D31;
  --ba26-success-950: #053321;
  --ba26-danger: #d9534f;
  --ba26-danger-25: #FFFBFA;
  --ba26-danger-50: #FEF3F2;
  --ba26-danger-100: #FEE4E2;
  --ba26-danger-200: #FECDCA;
  --ba26-danger-300: #FDA29B;
  --ba26-danger-400: #F97066;
  --ba26-danger-500: #F04438;
  --ba26-danger-600: #D92D20;
  --ba26-danger-700: #B42318;
  --ba26-danger-800: #912018;
  --ba26-danger-900: #7A271A;
  --ba26-danger-950: #55160C;
  --ba26-info: #5bc0de;
  --ba26-info-25: #F5FAFF;
  --ba26-info-50: #EFF8FF;
  --ba26-info-100: #D1E9FF;
  --ba26-info-200: #B2DDFF;
  --ba26-info-300: #84CAFF;
  --ba26-info-400: #53B1FD;
  --ba26-info-500: #2E90FA;
  --ba26-info-600: #1570EF;
  --ba26-info-700: #175CD3;
  --ba26-info-800: #1849A9;
  --ba26-info-900: #194185;
  --ba26-info-950: #102A56;
  --ba26-font-size-h1: 90px;
  --ba26-font-size-h2: 70px;
  --ba26-font-size-h3: 52px;
  --ba26-font-size-h4: 40px;
  --ba26-font-size-h5: 32px;
  --ba26-font-size-h6: 24px;
  --ba26-font-size-lg: 20px;
  --ba26-font-size-base: 18px;
  --ba26-font-size-md: 16px;
  --ba26-font-size-sm: 14px;
  --ba26-font-size-xs: 12px;
}

::selection {
  background-color: var(--ba26-primary-400);
  color: #fff;
}

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

html {
  font-size: 16px;
}

body {
  font-family: var(--ba26-font-family-base);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  background-color: #fff;
  color: #35383F;
  margin: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

code {
  background-color: #fff2f8;
  border-radius: 4px;
  padding: 2px;
}

button,
a {
  outline: none !important;
  text-decoration: none;
  color: var(--ba26-primary);
}

img {
  max-width: 100%;
  vertical-align: middle;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ba26-font-family-base);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ba26-heading-color);
  margin-top: 0;
}

h1 {
  font-size: var(--ba26-font-size-h1);
  line-height: 1;
}

h2 {
  font-size: var(--ba26-font-size-h2);
  line-height: 1.05;
}

h3 {
  font-size: var(--ba26-font-size-h3);
  line-height: 1.2;
}

h4 {
  font-size: var(--ba26-font-size-h4);
  line-height: 1.2;
}

h5 {
  font-size: var(--ba26-font-size-h5);
  line-height: 1.25;
}

h6 {
  font-size: var(--ba26-font-size-h6);
  line-height: 1.3;
}

.text-lg {
  font-size: var(--ba26-font-size-lg);
  line-height: 1.4;
}

.text-base {
  font-size: var(--ba26-font-size-base);
  line-height: 1.4;
}

.text-md {
  font-size: var(--ba26-font-size-md);
  line-height: 1.4;
}

.text-sm {
  font-size: var(--ba26-font-size-sm);
  line-height: 1.4;
}

.text-xs {
  font-size: var(--ba26-font-size-xs);
  line-height: 1.4;
}

.text-center {
  text-align: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(-1 * 1.5rem / 2);
  margin-left: calc(-1 * 1.5rem / 2);
}

[class*=col-] {
  width: 100%;
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
}

.col {
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  box-sizing: border-box;
  flex: 1 0 0%;
}

.col-1 {
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  padding-right: calc(1.5rem / 2);
  padding-left: calc(1.5rem / 2);
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 1 0 0%;
  }
  .col-sm-1 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 1 0 0%;
  }
  .col-md-1 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 1 0 0%;
  }
  .col-lg-1 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 1 0 0%;
  }
  .col-xl-1 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 1 0 0%;
  }
  .col-xxl-1 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    padding-right: calc(1.5rem / 2);
    padding-left: calc(1.5rem / 2);
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 100%;
  }
}
.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.me-0 {
  margin-right: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 591px) {
  .container {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1370px) {
  .container {
    max-width: 1368px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  user-select: none;
  background: transparent;
  color: #013F47;
  gap: 6px;
  overflow: hidden;
  min-width: 140px;
  font-family: inherit;
}
.btn:focus {
  outline: 0;
}
.btn:disabled, .btn.disabled {
  opacity: 0.65;
  pointer-events: none;
}
.btn img {
  min-width: 16px;
  transition: all 0.2s ease-in-out;
}
.btn:hover svg,
.btn:hover img {
  filter: brightness(0) invert(1);
}
@media (max-width: 1191px) {
  .btn {
    font-size: 15px;
    padding: 10px 14px;
    min-width: 120px;
  }
}
@media (max-width: 591px) {
  .btn {
    font-size: 14px;
    min-width: 100px;
  }
}

.btn-primary {
  background-color: #00A5A2;
  border-color: #00A5A2;
  color: #fff;
}
.btn-primary:hover {
  background-color: rgb(0, 129.3, 126.9490909091);
  border-color: rgb(0, 114, 111.9272727273);
}
.btn-primary:active {
  background-color: rgb(0, 114, 111.9272727273);
  border-color: rgb(0, 103.8, 101.9127272727);
}

.btn-outline-primary {
  background: #fff;
  color: #053771;
  border-color: #00A5A2;
}
.btn-outline-primary:hover {
  background-color: #053771;
  color: #fff;
  border-color: #053771;
}

.btn-secondary {
  background-color: #053771;
  border-color: #053771;
  color: #fff;
}
.btn-secondary:hover {
  background-color: rgb(3.4872881356, 38.3601694915, 78.8127118644);
  border-color: rgb(2.8389830508, 31.2288135593, 64.1610169492);
}
.btn-secondary:active {
  background-color: rgb(2.8389830508, 31.2288135593, 64.1610169492);
  border-color: rgb(2.406779661, 26.4745762712, 54.393220339);
}

.btn-outline-secondary {
  background: #fff;
  color: #053771;
  border-color: #053771;
}
.btn-outline-secondary:hover {
  background-color: #053771;
  color: #fff;
  border-color: #053771;
}

.btn-success {
  background-color: #5cb85c;
  border-color: #5cb85c;
  color: #fff;
}
.btn-success:hover {
  background-color: rgb(72.9115384615, 167.3884615385, 72.9115384615);
  border-color: rgb(68.2692307692, 156.7307692308, 68.2692307692);
}
.btn-success:active {
  background-color: rgb(68.2692307692, 156.7307692308, 68.2692307692);
  border-color: rgb(65.1743589744, 149.6256410256, 65.1743589744);
}

.btn-outline-success {
  background: #fff;
  color: #053771;
  border-color: #5cb85c;
}
.btn-outline-success:hover {
  background-color: #053771;
  color: #fff;
  border-color: #053771;
}

.btn-info {
  background-color: #5bc0de;
  border-color: #5bc0de;
  color: #fff;
}
.btn-info:hover {
  background-color: rgb(61.2802030457, 180.583248731, 216.0197969543);
  border-color: rgb(48.5431472081, 175.6903553299, 213.4568527919);
}
.btn-info:active {
  background-color: rgb(48.5431472081, 175.6903553299, 213.4568527919);
  border-color: rgb(42.1796954315, 171.2751269036, 209.6203045685);
}

.btn-outline-info {
  background: #fff;
  color: #053771;
  border-color: #5bc0de;
}
.btn-outline-info:hover {
  background-color: #053771;
  color: #fff;
  border-color: #053771;
}

.btn-warning {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
  color: #fff;
}
.btn-warning:hover {
  background-color: rgb(237.2109375, 157.753125, 45.0890625);
  border-color: rgb(236.015625, 151.21875, 30.984375);
}
.btn-warning:active {
  background-color: rgb(236.015625, 151.21875, 30.984375);
  border-color: rgb(235.21875, 146.8625, 21.58125);
}

.btn-outline-warning {
  background: #fff;
  color: #053771;
  border-color: #f0ad4e;
}
.btn-outline-warning:hover {
  background-color: #053771;
  color: #fff;
  border-color: #053771;
}

.btn-danger {
  background-color: #d9534f;
  border-color: #d9534f;
  color: #fff;
}
.btn-danger:hover {
  background-color: rgb(210.6607476636, 54.3065420561, 49.6392523364);
  border-color: rgb(201.4953271028, 48.0841121495, 43.5046728972);
}
.btn-danger:active {
  background-color: rgb(201.4953271028, 48.0841121495, 43.5046728972);
  border-color: rgb(193.1065420561, 46.0822429907, 41.6934579439);
}

.btn-outline-danger {
  background: #fff;
  color: #053771;
  border-color: #d9534f;
}
.btn-outline-danger:hover {
  background-color: #053771;
  color: #fff;
  border-color: #053771;
}

.btn-light {
  background-color: #FFF8EC;
  border-color: #FFF8EC;
  color: #fff;
}
.btn-light:hover {
  background-color: rgb(255, 234.8473684211, 200.3);
  border-color: rgb(255, 229.2105263158, 185);
}
.btn-light:active {
  background-color: rgb(255, 229.2105263158, 185);
  border-color: rgb(255, 225.4526315789, 174.8);
}

.btn-outline-light {
  background: #fff;
  color: #053771;
  border-color: #FFF8EC;
}
.btn-outline-light:hover {
  background-color: #053771;
  color: #fff;
  border-color: #053771;
}

.btn-dark {
  background-color: #053771;
  border-color: #053771;
  color: #fff;
}
.btn-dark:hover {
  background-color: rgb(3.4872881356, 38.3601694915, 78.8127118644);
  border-color: rgb(2.8389830508, 31.2288135593, 64.1610169492);
}
.btn-dark:active {
  background-color: rgb(2.8389830508, 31.2288135593, 64.1610169492);
  border-color: rgb(2.406779661, 26.4745762712, 54.393220339);
}

.btn-outline-dark {
  background: #fff;
  color: #053771;
  border-color: #053771;
}
.btn-outline-dark:hover {
  background-color: #053771;
  color: #fff;
  border-color: #053771;
}

.btn-white {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #fff;
}
.btn-white:hover {
  background-color: rgb(237.15, 237.15, 237.15);
  border-color: rgb(229.5, 229.5, 229.5);
}
.btn-white:active {
  background-color: rgb(229.5, 229.5, 229.5);
  border-color: rgb(224.4, 224.4, 224.4);
}

.btn-outline-white {
  background: #fff;
  color: #053771;
  border-color: #ffffff;
}
.btn-outline-white:hover {
  background-color: #053771;
  color: #fff;
  border-color: #053771;
}

.btn-gray {
  background-color: #35383F;
  border-color: #35383F;
  color: #fff;
}
.btn-gray:hover {
  background-color: rgb(36.6887931034, 38.7655172414, 43.6112068966);
  border-color: rgb(29.6982758621, 31.3793103448, 35.3017241379);
}
.btn-gray:active {
  background-color: rgb(29.6982758621, 31.3793103448, 35.3017241379);
  border-color: rgb(25.0379310345, 26.4551724138, 29.7620689655);
}

.btn-outline-gray {
  background: #fff;
  color: #053771;
  border-color: #35383F;
}
.btn-outline-gray:hover {
  background-color: #053771;
  color: #fff;
  border-color: #053771;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.btn-lg {
  padding: 1.1875rem 1.75rem;
  font-size: 1rem;
  border-radius: 0.625rem;
}

.btn-link {
  padding: 0;
  color: #0090A2;
}

.btn-icon {
  block-size: 48px;
  inline-size: 48px;
  min-inline-size: 48px;
}
@media (max-width: 1191px) {
  .btn-icon {
    block-size: 43px;
    inline-size: 43px;
    min-inline-size: 43px;
    padding: 12px;
  }
}
@media (max-width: 591px) {
  .btn-icon {
    block-size: 40px;
    inline-size: 40px;
    min-inline-size: 40px;
    padding: 10px;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  text-align: left;
}

.form-select {
  padding: 12px 30px 12px 16px;
  background: #FFFFFF;
  border: 1px solid #CED6E8;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ba26-secondary);
  line-height: 1.4;
  outline: 0;
  background-image: url('data:image/svg+xml,<svg width="11" height="6" viewBox="0 0 11 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.75 0.75L5.25 5.25L9.75 0.75" stroke="%23878C96" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-position: center right 15px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-select option {
  font-weight: 500;
}
@media (max-width: 1191px) {
  .form-select {
    font-size: 15px;
    padding: 10px 30px 10px 14px;
  }
}
@media (max-width: 591px) {
  .form-select {
    font-size: 14px;
  }
}

.header {
  position: relative;
  z-index: 9999;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid rgba(5, 55, 113, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .header__inner {
    padding: 12px 0;
  }
}

.header__extra-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 15px;
}
.header__extra-nav .header__extra-btn--mobile {
  min-width: auto;
}
@media (max-width: 1199px) {
  .header__extra-nav {
    gap: 6px;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .header__extra-nav .header__extra-btn--mobile {
    display: none;
  }
}

.header__extra-nav-mobile {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  padding: 16px;
  justify-content: center;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .header__extra-nav-mobile {
    display: flex;
  }
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media (max-width: 1199px) {
  .header__nav {
    overflow-y: scroll;
  }
}
.header__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.header__nav ul li a {
  padding: 36px 8px;
  color: #053771;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.header__nav .header__menu {
  float: right;
  padding: 0;
}
@media (min-width: 1200px) {
  .header__nav .header__menu {
    gap: 10px;
  }
}
.header__nav .header__menu > .header__item {
  margin: 0px;
  font-weight: 400;
  position: relative;
}
.header__nav .header__menu > .header__item.header__item--dropdown > a:after {
  content: "";
  background-image: url('data:image/svg+xml,<svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.353516 0.353516L5.79016 5.79014L11.2268 0.353516" stroke="%23053771"/></svg>');
  margin-left: 5px;
  display: inline-block;
  transition: all 0.15s;
  vertical-align: middle;
  height: 11px;
  width: 11px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 992px) {
  .header__nav .header__menu > .header__item.header__item--dropdown:hover > a {
    color: #00A5A2;
  }
  .header__nav .header__menu > .header__item.header__item--dropdown:hover > a:after {
    transform: rotate(180deg);
    background-image: url('data:image/svg+xml,<svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.353516 0.353516L5.79016 5.79014L11.2268 0.353516" stroke="%2300A5A2"/></svg>');
  }
}
@media (max-width: 1199px) {
  .header__nav .header__menu > .header__item.header__item--dropdown > a:after {
    position: absolute;
    right: 20px;
  }
}
.header__nav .header__menu > .header__item.megamenu-down {
  position: inherit;
}
.header__nav .header__menu > .header__item .header__submenu {
  background-color: #F7F9FB;
  display: block;
  left: 0;
  list-style: none;
  opacity: 0;
  padding: 0 0;
  position: absolute;
  visibility: hidden;
  width: 248px;
  z-index: 10;
  margin-top: 20px;
  transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (min-width: 992px) {
  .header__nav .header__menu > .header__item .header__submenu {
    transition-duration: 0.1s;
  }
}
@media (max-width: 1199px) {
  .header__nav .header__menu > .header__item .header__submenu {
    opacity: 1;
    position: static;
    visibility: visible;
    width: 100%;
    margin-top: 0;
    display: none;
  }
  .header__nav .header__menu > .header__item .header__submenu .submenu__item--dropdown > a:after {
    transform: rotate(90deg);
  }
}
.header__nav .header__menu > .header__item .header__submenu li {
  position: relative;
  margin-bottom: -1px;
}
.header__nav .header__menu > .header__item .header__submenu li:last-child {
  margin-bottom: 0;
}
.header__nav .header__menu > .header__item .header__submenu li:last-child a:before {
  content: none;
}
.header__nav .header__menu > .header__item .header__submenu li.submenu__item--dropdown > a:after {
  content: "";
  background-image: url('data:image/svg+xml,<svg width="7" height="12" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.353516 11.2266L5.79014 5.78992L0.353515 0.353294" stroke="black"/></svg>');
  margin-left: 5px;
  display: inline-block;
  transition: all 0.15s;
  vertical-align: middle;
  height: 11px;
  width: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.header__nav .header__menu > .header__item .header__submenu li a {
  position: relative;
  color: inherit;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  transition: 0.3s ease all;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav .header__menu > .header__item .header__submenu li a:before {
  content: "";
  width: calc(100% - 40px);
  height: 1px;
  background: #D2DBE5;
  bottom: 0px;
  left: 20px;
  position: absolute;
  transition: 0.3s ease all;
}
.header__nav .header__menu > .header__item .header__submenu li a span {
  display: inline-block;
  transition: 0.3s ease all;
  position: relative;
}
.header__nav .header__menu > .header__item .header__submenu li a span:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  background: var(--bs-heading-color);
  bottom: 2px;
  right: 0;
  transition: 0.3s ease all;
  -moz-transform-origin: right;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  -o-transform-origin: right;
  transform-origin: right;
}
.header__nav .header__menu > .header__item .header__submenu li:hover > a {
  color: var(--bs-heading-color);
  background: #D5F0F0;
}
.header__nav .header__menu > .header__item .header__submenu li:hover > a:before {
  opacity: 0;
}
.header__nav .header__menu > .header__item .header__submenu li:hover > a span:after {
  width: 100%;
  -moz-transform-origin: left;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
  left: 0;
  right: auto;
}
.header__nav .header__menu > .header__item .header__submenu li .header__submenu {
  left: 248px;
  background: #F0F4F7;
}
.header__nav .header__menu > .header__item .header__submenu li .header__submenu li:hover > a {
  background: #AAE1E0;
}
@media (min-width: 992px) {
  .header__nav .header__menu > .header__item:hover > .header__submenu {
    opacity: 1;
    visibility: visible;
    margin-top: 0px;
    transition-duration: 0.2s;
    -webkit-transform: perspective(250px) rotateX(0deg);
    -moz-transform: perspective(250px) rotateX(0deg);
    -ms-transform: perspective(250px) rotateX(0deg);
    -o-transform: perspective(250px) rotateX(0deg);
    transform: perspective(250px) rotateX(0deg);
  }
  .header__nav .header__menu > .header__item:hover > .header__submenu li:hover > .header__submenu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    top: -1px;
  }
}
.header__nav .header__menu > .header__item.header__item--dropdown.open > a:after {
  transform: rotate(180deg);
}
.header__nav .header__menu > .header__item.header__item--dropdown.open > .header__submenu {
  display: block;
  opacity: 1;
}
.header__nav .header__menu > .header__item.header__item--dropdown.open > .header__submenu > .submenu__item--dropdown.open > a:after {
  transform: rotate(270deg);
}
.header__nav .header__menu > .header__item.header__item--dropdown.open > .header__submenu > .submenu__item--dropdown.open .header__submenu {
  display: block;
  opacity: 1;
}
@media (max-width: 1199px) {
  .header__nav {
    position: fixed;
    z-index: 9999;
    height: 100vh;
    width: 290px;
    background-color: #fff;
    left: -290px;
    top: 0;
    flex-direction: column;
    justify-content: unset;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 400ms;
    transition: all 0.25s;
  }
  .header__nav ul {
    flex-direction: column;
  }
  .header__nav ul li a {
    padding: 10px 20px;
    justify-content: start;
  }
  .header__nav.show {
    left: 0;
  }
}

.header__logo img {
  height: 40px;
}
@media (max-width: 591px) {
  .header__logo img {
    height: 35px;
  }
}

.header__logo-mobile {
  display: none;
}
.header__logo-mobile img {
  height: 40px;
}
@media (max-width: 1199px) {
  .header__logo-mobile {
    display: block;
    padding: 20px;
  }
}
@media (max-width: 591px) {
  .header__logo-mobile img {
    height: 35px;
  }
}

.mobile_toggler {
  display: flex;
  align-items: center;
  margin-left: 20px;
  border: 0;
  font-size: 16px;
  line-height: 24px;
  padding: 0;
  float: right;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  flex-direction: column;
}
.mobile_toggler .toggler_line {
  width: 18px;
  height: 2px;
  background-color: #000;
  display: block;
  margin: 2px 0;
}
.mobile_toggler .toggler_line:nth-child(2) {
  width: 14px;
}
.mobile_toggler.active::after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  background: #000;
  height: 100%;
  width: 100%;
  opacity: 0.4;
}
@media (min-width: 1200px) {
  .mobile_toggler {
    display: none;
  }
}

.sticky--header.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: 0.5s ease 0s normal forwards 1 running headerSticky;
  -ms-animation: 0.5s ease 0s normal forwards 1 running headerSticky;
  -webkit-animation: 0.5s ease 0s normal forwards 1 running headerSticky;
  -moz-animation: 0.5s ease 0s normal forwards 1 running headerSticky;
  -o-animation: 0.5s ease 0s normal forwards 1 running headerSticky;
  -khtml-animation: 0.5s ease 0s normal forwards 1 running headerSticky;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
@media (min-width: 1191px) {
  .sticky--header.sticky-active .header__nav ul li a {
    padding: 25px 8px;
  }
}

@-moz-keyframes headerSticky {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-ms-keyframes headerSticky {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-webkit-keyframes headerSticky {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes headerSticky {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
.footer {
  background: #032144;
}
.footer .ba26_footer_top {
  padding: 60px 0 20px 0;
}
@media (max-width: 1191px) {
  .footer .ba26_footer_top {
    padding: 40px 0 20px 0;
  }
}
.footer .ba26_footer_top__nav-link {
  margin-bottom: 25px;
}
.footer .ba26_footer_top__nav-link h2 {
  font-size: 12px;
  font-weight: 500;
  color: #7490B0;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
  padding: 2px 0;
}
.footer .ba26_footer_top__nav-link ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .ba26_footer_top__nav-link ul li a {
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
  font-size: 12px;
  display: block;
  padding: 2px 0;
  transition: all 0.5s;
}
.footer .ba26_footer_top__nav-link ul li a:hover {
  color: #00A5A2;
}
.footer .ba26_footer_top__nav-link ul.ba26_footer_top__nav-link-column-2 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
}
.footer .ba26_footer_top__nav-link ul.ba26_footer_top__nav-link-column-2 li {
  width: calc(50% - 12px);
}
.footer .footer-hr {
  border-top: 1px solid #02162D;
  border-width: 1px 0 0px 0;
  margin-top: 0;
  margin-bottom: 25px;
}
.footer .ba26_footer_location h2 {
  font-size: 12px;
  font-weight: 500;
  color: #7490B0;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
  padding: 2px 0;
}
@media (max-width: 1191px) {
  .footer .ba26_footer_location {
    height: 130px;
  }
}
.footer .ba26_footer_location_content {
  display: none;
  padding: 10px 0;
  color: #ffffff;
  font-size: 12px;
}
.footer .ba26_footer_location_content.ba26_footer_active {
  display: block;
}
.footer .ba26_footer_location_content span {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
}
.footer .ba26_footer_location_content span:first-child {
  padding-left: 0;
}
.footer .ba26_footer_location_content span:last-child {
  padding-right: 0;
}
.footer .ba26_footer_location_content ul {
  padding: 0;
  margin: 0;
}
.footer .ba26_footer_location_content ul li {
  display: inline-block;
}
.footer .ba26_footer_location_content ul li:not(:last-child)::after {
  content: "|";
  padding-left: 10px;
  padding-right: 10px;
}
.footer .ba26_footer_location_tabs {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid #042C5A;
  justify-content: space-between;
  gap: 18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.footer .ba26_footer_location_tabs::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.footer .ba26_footer_location_tabs::-webkit-scrollbar:vertical {
  width: 0;
}
.footer .ba26_footer_location_tabs .ba26_footer_location_tab {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: #ACBCD0;
  cursor: pointer;
  font-size: 12px;
  white-space: nowrap;
  font-family: var(--ba26-font-family-base) !important;
  padding: 10px 0;
}
.footer .ba26_footer_location_tabs .ba26_footer_location_tab.ba26_footer_active {
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
}
.footer .ba26_footer_bottom {
  background: #02162D;
  padding: 30px 0 2px 0;
}
@media (max-width: 767px) {
  .footer .ba26_footer_bottom .ba26_footer_bottom__logo img {
    height: 50px;
  }
}
.footer .ba26_footer_bottom .copyright-text {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}
@media (max-width: 591px) {
  .footer .ba26_footer_bottom .ba26_footer_bottom__social-link {
    margin: 20px 0 10px;
  }
}
.footer .ba26_footer_bottom .ba26_footer_bottom__social-link h2 {
  font-size: 12px;
  font-weight: 500;
  color: #ACBCD0;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
  padding: 2px 0;
  margin-bottom: 8px;
}
.footer .ba26_footer_bottom .ba26_footer_bottom__social-link ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
}
.footer .ba26_footer_bottom .ba26_footer_bottom__social-link ul li a img {
  width: 24px;
  min-width: 24px;
  height: 24px;
  transition: all 0.5s;
}
.footer .ba26_footer_bottom .ba26_footer_bottom__social-link ul li a img:hover {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .footer .ba26_footer_bottom .ba26_footer_bottom__social-link ul li a img {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }
}
.footer .ba26_footer_bottom .ba26_footer_bottom__social-link ul li a:hover {
  color: #00A5A2;
}
@media (max-width: 767px) {
  .footer .ba26_footer_bottom .ba26_footer_bottom__social-link ul {
    gap: 10px;
  }
}
.footer .ba26_footer_bottom .ba26_footer_bottom__nav-link {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  display: flex;
  gap: 5px 16px;
  flex-wrap: wrap;
}
.footer .ba26_footer_bottom .ba26_footer_bottom__nav-link li {
  line-height: 1.4;
  font-weight: 400;
  color: #ACBCD0;
  font-size: 12px;
}
.footer .ba26_footer_bottom .ba26_footer_bottom__nav-link li a {
  line-height: 1.4;
  font-weight: 400;
  color: #ACBCD0;
  font-size: 12px;
  display: block;
  padding: 2px 0;
  transition: all 0.5s;
}
.footer .ba26_footer_bottom .ba26_footer_bottom__nav-link li a:hover {
  color: #00A5A2;
}

.ba26_home_heading {
  margin-bottom: 40px;
}
.ba26_home_heading .ba26_home_heading__title {
  font-size: 40px;
  color: #053771;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ba26_home_heading.ba26_home_heading--center {
  text-align: center;
}
.ba26_home_heading p {
  font-weight: 300;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
}
@media (max-width: 1380px) {
  .ba26_home_heading .ba26_home_heading__title {
    font-size: 36px;
  }
}
@media (max-width: 1191px) {
  .ba26_home_heading .ba26_home_heading__title {
    font-size: 32px;
  }
  .ba26_home_heading p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .ba26_home_heading .ba26_home_heading__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .ba26_home_heading {
    margin-bottom: 30px;
  }
  .ba26_home_heading .ba26_home_heading__title {
    font-size: 24px;
  }
  .ba26_home_heading p {
    font-size: 16px;
  }
}

.ba26_home_hero {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 100px);
  min-height: 500px;
}
.ba26_home_hero .ba26_home_hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba26_home_hero .ba26_home_hero__inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.ba26_home_hero .ba26_home_hero__title {
  font-weight: 600;
  font-size: 70px;
  line-height: 105%;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.ba26_home_hero p {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #000000;
  margin-right: 40px;
}
.ba26_home_hero .ba26_home_hero__btns {
  display: flex;
  margin-top: 30px;
  gap: 16px;
}
.ba26_home_hero .ba26_home_hero__img-mobile {
  display: none;
}
@media (max-width: 1380px) {
  .ba26_home_hero .ba26_home_hero__title {
    font-size: 50px;
  }
  .ba26_home_hero p {
    font-size: 18px;
  }
}
@media (max-width: 1191px) {
  .ba26_home_hero .ba26_home_hero__title {
    font-size: 45px;
    margin-bottom: 12px;
  }
  .ba26_home_hero p {
    font-size: 16px;
    margin-right: 0px;
  }
  .ba26_home_hero .ba26_home_hero__btns {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .ba26_home_hero {
    min-height: 400px;
    max-height: 450px;
  }
  .ba26_home_hero .ba26_home_hero__title {
    font-size: 36px;
  }
  .ba26_home_hero p {
    font-size: 15px;
  }
  .ba26_home_hero .ba26_home_hero__img {
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .ba26_home_hero {
    height: auto;
    min-height: auto;
    max-height: 100%;
  }
  .ba26_home_hero .ba26_home_hero__img {
    display: none;
  }
  .ba26_home_hero .ba26_home_hero__img-mobile {
    display: block;
    margin-top: -20%;
  }
  .ba26_home_hero p {
    margin-right: 0;
    max-width: 440px;
  }
  .ba26_home_hero .ba26_home_hero__inner {
    padding-top: 40px;
    position: relative;
    transform: unset;
    top: unset;
  }
  .ba26_home_hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFFFF7;
    height: 50%;
    width: 100%;
    z-index: -1;
  }
}
@media (max-width: 591px) {
  .ba26_home_hero .ba26_home_hero__btns {
    gap: 10px;
  }
  .ba26_home_hero p {
    margin-right: 0;
  }
  .ba26_home_hero .ba26_home_hero__title {
    font-size: 32px;
  }
  .ba26_home_hero .ba26_home_hero__img-mobile {
    height: 500px;
    width: 100%;
    object-fit: cover;
  }
}

.ba26_home_hero__trust-badge {
  padding: 5px 15px 5px 5px;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
}
.ba26_home_hero__trust-badge .ba26_home_hero__trust-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
}
.ba26_home_hero__trust-badge .ba26_home_hero__trust-avatars {
  display: inline-flex;
  margin: -1px 0;
}
.ba26_home_hero__trust-badge .ba26_home_hero__trust-avatars img {
  width: 32px;
  height: 32px;
  border: 1px solid #D3D3D3;
  border-radius: 50%;
}
.ba26_home_hero__trust-badge .ba26_home_hero__trust-avatars img:not(:first-child) {
  margin-left: -10px;
}
@media (max-width: 1191px) {
  .ba26_home_hero__trust-badge .ba26_home_hero__trust-text {
    font-size: 15px;
  }
  .ba26_home_hero__trust-badge .ba26_home_hero__trust-avatars img {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 991px) {
  .ba26_home_hero__trust-badge .ba26_home_hero__trust-text {
    font-size: 14px;
  }
  .ba26_home_hero__trust-badge .ba26_home_hero__trust-avatars img {
    width: 25px;
    height: 25px;
  }
  .ba26_home_hero__trust-badge .ba26_home_hero__trust-badge {
    padding: 5px 13px 5px 5px;
    gap: 7px;
  }
}
@media (max-width: 591px) {
  .ba26_home_hero__trust-badge {
    padding: 4px 10px 4px 4px;
    gap: 6px;
  }
  .ba26_home_hero__trust-badge .ba26_home_hero__trust-text {
    font-size: 12px;
  }
}

.ba26_home_staffing__wrapper {
  margin-bottom: 55px;
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
}
@media (max-width: 1191px) {
  .ba26_home_staffing__wrapper {
    margin-bottom: 35px;
    grid-template-columns: 1fr 220px 1fr;
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .ba26_home_staffing__wrapper {
    grid-template-columns: 1fr 160px 1fr;
    gap: 0px;
  }
}
@media (max-width: 767px) {
  .ba26_home_staffing__wrapper {
    grid-template-columns: auto;
    display: flex;
    flex-direction: column;
  }
  .ba26_home_staffing__wrapper::before {
    content: "";
    background-color: #DEE0E3;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 100%;
  }
}
@media (max-width: 591px) {
  .ba26_home_staffing__wrapper {
    margin-bottom: 20px;
  }
}

.ba26_home_staffing {
  position: relative;
  padding-top: 50px;
  padding-bottom: 60px;
}
.ba26_home_staffing .container {
  position: relative;
}
.ba26_home_staffing .ba26_home_heading .ba26_home_heading__title br {
  display: none;
}
.ba26_home_staffing .ba26_home_staffing__text {
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #35383F;
  padding: 0 105px;
}
.ba26_home_staffing .ba26_home_staffing__bg {
  position: absolute;
  left: -50%;
  top: -100%;
  z-index: -1;
  width: 1000px;
  aspect-ratio: 2/2;
}
@media (max-width: 1191px) {
  .ba26_home_staffing .ba26_home_staffing__text {
    font-size: 20px;
    padding: 0;
  }
  .ba26_home_staffing .ba26_home_staffing__bg {
    top: -50%;
    width: 700px;
  }
}
@media (max-width: 991px) {
  .ba26_home_staffing {
    padding-top: 40px;
  }
  .ba26_home_staffing .ba26_home_staffing__bg {
    top: -50%;
    width: 400px;
    left: -25%;
  }
}
@media (max-width: 767px) {
  .ba26_home_staffing .ba26_home_staffing__text {
    font-size: 18px;
  }
  .ba26_home_staffing .ba26_home_heading .ba26_home_heading__title br {
    display: block;
  }
}
@media (max-width: 591px) {
  .ba26_home_staffing {
    padding-top: 20px;
  }
}

.ba26_home_staffing__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FFFFFF;
  border-radius: 30px;
  padding: 5px 20px 5px 5px;
  box-shadow: 0px 2px 6px rgba(19, 36, 96, 0.05);
  position: relative;
  border: 1px solid #DEE0E3;
}
.ba26_home_staffing__item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #053771;
  margin: 0;
}
.ba26_home_staffing__item .ba26_home_staffing__value {
  background: var(--ba26-primary-25);
  color: var(--ba26-primary-600);
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 30px;
  white-space: nowrap;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 130%;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ba26_home_staffing__item .ba26_home_staffing__value img {
  height: 16px;
}
@media (max-width: 1191px) {
  .ba26_home_staffing__item .ba26_home_staffing__value {
    padding: 4px 12px;
    font-size: 18px;
    gap: 3px;
  }
  .ba26_home_staffing__item p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .ba26_home_staffing__item {
    padding: 5px 10px 5px 5px;
  }
  .ba26_home_staffing__item .ba26_home_staffing__value {
    padding: 6px 6px;
    font-size: 14px;
    gap: 3px;
  }
  .ba26_home_staffing__item .ba26_home_staffing__value img {
    height: 12px;
  }
  .ba26_home_staffing__item p {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .ba26_home_staffing__item .ba26_home_staffing__value {
    padding: 6px 10px;
  }
  .ba26_home_staffing__item p {
    font-size: 14px;
  }
}

.ba26_home_staffing__logo {
  position: relative;
  width: 240px;
  margin-left: auto;
  margin-right: auto;
}
.ba26_home_staffing__logo::after {
  content: "";
  background-image: url(../images/home/staffing-line.svg);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 492px;
  height: 128px;
  background-repeat: no-repeat;
  background-position: center;
}
.ba26_home_staffing__logo img {
  position: relative;
  z-index: 2;
}
@media (max-width: 1191px) {
  .ba26_home_staffing__logo {
    width: 220px;
  }
}
@media (max-width: 991px) {
  .ba26_home_staffing__logo {
    width: 120px;
  }
  .ba26_home_staffing__logo::after {
    transform: translate(-50%, -50%) scaleX(0.5);
    width: 380px;
    height: 188px;
  }
}
@media (max-width: 767px) {
  .ba26_home_staffing__logo {
    width: 160px;
    margin: 20px 0;
  }
  .ba26_home_staffing__logo::after {
    content: none;
  }
}

.ba26_home_staffing__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1;
  padding: 0;
}

.ba26_home_staffing__col--left {
  align-items: flex-end;
  text-align: right;
}

.ba26_home_staffing__col--right {
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 991px) {
  .ba26_home_staffing__col {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .ba26_home_staffing__col--left {
    align-items: center;
    text-align: center;
  }
  .ba26_home_staffing__col--right {
    align-items: center;
    text-align: center;
  }
  .ba26_home_staffing__col {
    gap: 8px;
  }
}
.ba26_home_control {
  position: relative;
  will-change: transform;
}
.ba26_home_control .ba26_home_control__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.ba26_home_control__btns {
  text-align: center;
  margin-top: 30px;
}

.ba26_home_control__content {
  text-align: center;
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba26_home_control__content .ba26_home_control__title {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 120%;
  margin-bottom: 10px;
}
.ba26_home_control__content .ba26_home_control__title span {
  display: block;
  font-weight: 600;
}
.ba26_home_control__content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.01em;
  color: #35383F;
}
.ba26_home_control__content .ba26_home_control__btns {
  display: flex;
  margin-top: 30px;
  gap: 16px;
  justify-content: center;
}
@media (max-width: 1380px) {
  .ba26_home_control__content .ba26_home_control__title {
    font-size: 36px;
  }
}
@media (max-width: 1191px) {
  .ba26_home_control__content .ba26_home_control__title {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .ba26_home_control__content {
    height: auto;
    min-height: auto;
    padding: 150px 0;
  }
  .ba26_home_control__content p {
    font-size: 16px;
  }
  .ba26_home_control__content .ba26_home_control__title {
    font-size: 28px;
  }
  .ba26_home_control__content .ba26_home_control__bg {
    width: 100%;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .ba26_home_control__content .ba26_home_control__title {
    font-size: 24px;
  }
}
@media (max-width: 591px) {
  .ba26_home_control__content {
    padding: 100px 0;
  }
  .ba26_home_control__content .ba26_home_control__btns {
    gap: 10px;
  }
}

.ba26_home_control__img-wrapper {
  position: relative;
  z-index: -1;
  margin-top: -700px;
}
.ba26_home_control__img-wrapper img {
  border-radius: 10px;
}
.ba26_home_control__img-wrapper .ba26_home_control__img1 img {
  margin-left: 50px;
}
.ba26_home_control__img-wrapper .ba26_home_control__img2 img {
  margin-left: 160px;
  margin-top: 120px;
}
.ba26_home_control__img-wrapper .ba26_home_control__img3 img {
  margin-top: 75px;
}
.ba26_home_control__img-wrapper .ba26_home_control__img4 img {
  float: right;
  margin-top: -50px;
}
.ba26_home_control__img-wrapper .ba26_home_control__img5 img {
  margin-left: 80px;
  margin-top: 45px;
}
.ba26_home_control__img-wrapper .ba26_home_control__img6 {
  text-align: center;
}
.ba26_home_control__img-wrapper .ba26_home_control__img6 img {
  margin-top: -150px;
}
.ba26_home_control__img-wrapper .ba26_home_control__img7 {
  text-align: right;
}
.ba26_home_control__img-wrapper .ba26_home_control__img7 img {
  margin-top: -100px;
  margin-right: 50px;
}
.ba26_home_control__img-wrapper .ba26_home_control__img8 img {
  margin-top: 155px;
  margin-left: 10px;
}
.ba26_home_control__img-wrapper .ba26_home_control__img9 img {
  margin-left: 180px;
  margin-top: 230px;
}
.ba26_home_control__img-wrapper .ba26_home_control__img10 {
  text-align: center;
}
.ba26_home_control__img-wrapper .ba26_home_control__img10 img {
  margin-left: 90px;
  margin-top: 50px;
}
@media (max-width: 1191px) {
  .ba26_home_control__img-wrapper .ba26_home_control__img1 img {
    width: 280px;
  }
  .ba26_home_control__img-wrapper .ba26_home_control__img2 img {
    width: 300px;
  }
  .ba26_home_control__img-wrapper .ba26_home_control__img3 img {
    width: 250px;
  }
  .ba26_home_control__img-wrapper .ba26_home_control__img4 img {
    width: 250px;
  }
  .ba26_home_control__img-wrapper .ba26_home_control__img5 img img {
    width: 250px;
  }
  .ba26_home_control__img-wrapper .ba26_home_control__img6 {
    text-align: center;
  }
  .ba26_home_control__img-wrapper .ba26_home_control__img6 img {
    margin-top: -60px;
  }
  .ba26_home_control__img-wrapper .ba26_home_control__img7 img {
    width: 250px;
  }
  .ba26_home_control__img-wrapper .ba26_home_control__img8 img {
    width: 280px;
  }
  .ba26_home_control__img-wrapper .ba26_home_control__img9 img {
    width: 250px;
  }
  .ba26_home_control__img-wrapper .ba26_home_control__img10 {
    text-align: center;
  }
  .ba26_home_control__img-wrapper .ba26_home_control__img10 img {
    margin-left: 90px;
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .ba26_home_control__img-wrapper {
    display: none;
  }
}

[class*=ba26_home_control__img] {
  will-change: transform;
  transform: translateZ(0);
}

.ba26_home_assignment {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}
.ba26_home_assignment .ba26_home_assignment__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 125%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #41454D;
  margin-bottom: 60px;
}
@media (max-width: 1191px) {
  .ba26_home_assignment {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .ba26_home_assignment .ba26_home_assignment__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .ba26_home_assignment {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ba26_home_assignment .ba26_home_assignment__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 591px) {
  .ba26_home_assignment .ba26_home_assignment__title {
    font-size: 18px;
    margin: 0 auto;
    max-width: 350px;
  }
}

@media (max-width: 767px) {
  .ba26_home_assignment__timeline {
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-top: 10px;
  }
  .ba26_home_assignment__timeline::-webkit-scrollbar {
    display: none;
  }
  .ba26_home_assignment__timeline .ba26_home_assignment__inner {
    width: 800px;
  }
}
@media (max-width: 400px) {
  .ba26_home_assignment__timeline .ba26_home_assignment__inner {
    width: 850px;
  }
}
.ba26_home_assignment__inner {
  display: flex;
  position: relative;
  padding: 0 160px;
  margin: 15px 35px;
  justify-content: space-between;
}
.ba26_home_assignment__inner .ba26_home_assignment__item {
  text-align: center;
  transition: all 0.25s;
}
.ba26_home_assignment__inner .ba26_home_assignment__item:hover {
  transform: translateY(-15px);
}
.ba26_home_assignment__inner .ba26_home_assignment__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(70.62% 70.62% at 31.21% 29.38%, #FFFFFF 0%, #D4F3F3 100%);
  border-radius: 50%;
  width: 82px;
  min-width: 82px;
  height: 82px;
  transition: all 0.25s;
  margin: 0 auto 12px;
  padding: 10px;
}
.ba26_home_assignment__inner .ba26_home_assignment__line {
  background-image: url(../images/home/assignment__line.svg);
  height: 1px;
  width: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 41px;
}
.ba26_home_assignment__inner .ba26_home_assignment__line::before, .ba26_home_assignment__inner .ba26_home_assignment__line::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #053771;
  height: 5px;
  width: 5px;
  top: -2px;
}
.ba26_home_assignment__inner .ba26_home_assignment__line::before {
  left: 0;
}
.ba26_home_assignment__inner .ba26_home_assignment__line::after {
  right: 0;
}
.ba26_home_assignment__inner .ba26_home_assignment__you,
.ba26_home_assignment__inner .ba26_home_assignment__new {
  position: absolute;
  font-weight: 500;
  font-size: 18px;
  line-height: 135%;
  letter-spacing: -0.01em;
  color: #41454D;
  top: 50px;
}
.ba26_home_assignment__inner .ba26_home_assignment__you {
  left: 0;
}
.ba26_home_assignment__inner .ba26_home_assignment__new {
  text-align: right;
  right: 0;
}
.ba26_home_assignment__inner .ba26_home_assignment__icon-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--ba26-primary-500);
  width: 100px;
  margin: 0;
}
@media (max-width: 1280px) {
  .ba26_home_assignment__inner {
    padding: 0 120px;
  }
}
@media (max-width: 1191px) {
  .ba26_home_assignment__inner {
    padding: 0 100px;
    margin: 15px 0;
  }
  .ba26_home_assignment__inner .ba26_home_assignment__you,
  .ba26_home_assignment__inner .ba26_home_assignment__new {
    font-size: 16px;
  }
  .ba26_home_assignment__inner .ba26_home_assignment__icon-title {
    font-size: 14px;
  }
  .ba26_home_assignment__inner .ba26_home_assignment__icon {
    width: 72px;
    min-width: 72px;
    height: 72px;
    margin: 0 auto 8px;
    padding: 18px;
  }
  .ba26_home_assignment__inner .ba26_home_assignment__line {
    top: 35px;
  }
}
@media (max-width: 991px) {
  .ba26_home_assignment__inner {
    padding: 0 75px;
  }
  .ba26_home_assignment__inner .ba26_home_assignment__icon {
    width: 65px;
    min-width: 65px;
    height: 65px;
    margin: 0 auto 8px;
    padding: 16px;
  }
  .ba26_home_assignment__inner .ba26_home_assignment__icon-title {
    font-size: 13px;
    width: 90px;
  }
  .ba26_home_assignment__inner .ba26_home_assignment__you,
  .ba26_home_assignment__inner .ba26_home_assignment__new {
    font-size: 14px;
  }
  .ba26_home_assignment__inner .ba26_home_assignment__item:hover {
    transform: translateY(0);
  }
}

.ba26_home_assignment__swiper {
  margin: 15px 35px;
  padding: 15px 0;
}
.ba26_home_assignment__swiper .ba26_home_assignment__line {
  background-image: url(../images/home/assignment__line.svg);
  height: 1px;
  width: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 55px;
}
@media (max-width: 1191px) {
  .ba26_home_assignment__swiper {
    margin: 15px 0;
  }
}
.ba26_home_assignment__swiper .ba26_home_assignment__wrapper {
  justify-content: space-between;
  width: auto;
}
.ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item {
  text-align: center;
  transition: all 0.25s;
}
.ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item:hover {
  transform: translateY(-15px);
}
.ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(70.62% 70.62% at 31.21% 29.38%, #FFFFFF 0%, #D4F3F3 100%);
  border-radius: 50%;
  width: 82px;
  min-width: 82px;
  height: 82px;
  transition: all 0.25s;
  margin: 0 auto 12px;
  padding: 10px;
}
.ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__you,
.ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__new {
  position: absolute;
  font-weight: 500;
  font-size: 18px;
  line-height: 135%;
  letter-spacing: -0.01em;
  color: #41454D;
  top: 50px;
}
.ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__you {
  left: 0;
}
.ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__new {
  text-align: right;
  right: 0;
}
.ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__icon-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--ba26-primary-500);
  margin: 0;
}
.ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item {
  width: 100px;
  min-width: 100px;
}
.ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item-first,
.ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item-last {
  width: 100px;
  min-width: 100px;
}
.ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item-first::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #053771;
  height: 5px;
  width: 5px;
  top: 38px;
  left: 0;
}
.ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item-last::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #053771;
  height: 5px;
  width: 5px;
  top: 38px;
  right: 0;
}
@media (max-width: 1191px) {
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__you,
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__new {
    font-size: 16px;
  }
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__icon-title {
    font-size: 14px;
  }
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__icon {
    width: 72px;
    min-width: 72px;
    height: 72px;
    margin: 0 auto 8px;
    padding: 18px;
  }
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__line {
    top: 35px;
  }
}
@media (max-width: 991px) {
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__icon {
    width: 65px;
    min-width: 65px;
    height: 65px;
    margin: 0 auto 8px;
    padding: 16px;
  }
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__icon-title {
    font-size: 13px;
  }
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__you,
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__new {
    font-size: 14px;
  }
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item {
    width: 80px;
    min-width: 80px;
  }
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item:hover {
    transform: translateY(0);
  }
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item-first,
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item-last {
    width: 70px;
    min-width: 70px;
  }
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item-first::before {
    top: 30px;
  }
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item-last::after {
    top: 30px;
  }
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__you,
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__new {
    top: 45px;
  }
}
@media (max-width: 767px) {
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item {
    width: 33.33%;
    min-width: 33.33%;
  }
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item-first,
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item-last {
    width: 120px;
    min-width: 120px;
  }
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__icon-title {
    padding: 0 20px;
  }
}
@media (max-width: 591px) {
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item {
    width: 50%;
    min-width: 50%;
  }
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item-first {
    margin-right: 10px;
  }
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item-first {
    width: 40%;
    min-width: 40%;
  }
  .ba26_home_assignment__swiper .ba26_home_assignment__wrapper .ba26_home_assignment__item-last {
    width: 50%;
    min-width: 50%;
  }
}
@media (max-width: 991px) {
  .ba26_home_assignment__swiper .ba26_home_assignment__line {
    top: 47px;
  }
}
@media (max-width: 767px) {
  .ba26_home_assignment__swiper {
    margin: 15px 40px;
  }
}

.ba26_home_assignment__swiper-block {
  position: relative;
}
@media (max-width: 767px) {
  .ba26_home_assignment__swiper-block .ba26_home_assignment-navigation .ba26_home_assignment-prev,
  .ba26_home_assignment__swiper-block .ba26_home_assignment-navigation .ba26_home_assignment-next {
    width: 28px;
    height: 28px;
    border-radius: 30px;
    background: var(--ba26-primary-200);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
    position: absolute;
    top: 48px;
    padding: 10px;
  }
  .ba26_home_assignment__swiper-block .ba26_home_assignment-navigation .ba26_home_assignment-prev[aria-disabled=true],
  .ba26_home_assignment__swiper-block .ba26_home_assignment-navigation .ba26_home_assignment-next[aria-disabled=true] {
    background: var(--ba26-secondary-50);
  }
  .ba26_home_assignment__swiper-block .ba26_home_assignment-navigation .ba26_home_assignment-prev {
    left: 0;
  }
  .ba26_home_assignment__swiper-block .ba26_home_assignment-navigation .ba26_home_assignment-next {
    right: 0;
  }
}

.ba26_home_facilities {
  background-color: #02162D;
  padding-top: 140px;
  padding-bottom: 125px;
}
@media (max-width: 1380px) {
  .ba26_home_facilities {
    padding-top: 110px;
    padding-bottom: 95px;
  }
}
@media (max-width: 1191px) {
  .ba26_home_facilities {
    padding-top: 90px;
    padding-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .ba26_home_facilities {
    padding-top: 60px;
    padding-bottom: 45px;
  }
}
.ba26_home_facilities .ba26_home_heading .ba26_home_heading__title {
  color: #fff;
  font-weight: 500;
}
.ba26_home_facilities .ba26_home_heading p {
  color: #fff;
  margin: 0 160px;
}
@media (max-width: 1191px) {
  .ba26_home_facilities .ba26_home_heading p {
    margin: 0 20px;
  }
}
@media (max-width: 591px) {
  .ba26_home_facilities .ba26_home_heading p {
    margin: 0;
  }
  .ba26_home_facilities .ba26_home_heading .ba26_home_heading__title br {
    display: none;
  }
}
.ba26_home_facilities .ba26_home_facilities__img {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  height: calc(100% - 24px);
}
.ba26_home_facilities .ba26_home_facilities__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba26_home_facilities .ba26_home_facilities__img::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 165, 162, 0.3) 44.29%, rgba(0, 141, 139, 0.8) 100%);
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
}
@media (max-width: 1191px) {
  .ba26_home_facilities .ba26_home_facilities__img {
    height: auto;
    position: sticky;
    top: 30px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .ba26_home_facilities .ba26_home_facilities__img {
    position: relative;
    top: 0;
  }
}

.ba26_home_facilities__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  background: #032144;
  border: 1px solid #042C5A;
  border-radius: 8px;
  height: calc(100% - 24px);
  margin-bottom: 24px;
  min-height: 120px;
}
.ba26_home_facilities__card .ba26_home_facilities__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 135%;
  letter-spacing: -0.01em;
  color: #F7F9FB;
  margin-bottom: 3px;
}
.ba26_home_facilities__card p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #FFFFFF;
  margin-bottom: 0;
}
.ba26_home_facilities__card .ba26_home_facilities__icon {
  width: 55px;
  min-width: 55px;
  height: 55px;
}
@media (max-width: 1280px) {
  .ba26_home_facilities__card .ba26_home_facilities__title {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .ba26_home_facilities__card:hover .ba26_home_facilities__icon {
    animation: none;
  }
}
@media (max-width: 591px) {
  .ba26_home_facilities__card {
    padding: 10px 18px;
    height: calc(100% - 15px);
    margin-bottom: 15px;
  }
  .ba26_home_facilities__card .ba26_home_facilities__title {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .ba26_home_facilities__card p {
    font-size: 15px;
  }
}

.ba26_home_speciality {
  background-color: #02162D;
  padding-top: 50px;
  padding-bottom: 125px;
}
.ba26_home_speciality .ba26_home_heading {
  margin-bottom: 60px;
}
.ba26_home_speciality .ba26_home_heading .ba26_home_heading__title {
  color: #fff;
  font-weight: 500;
}
.ba26_home_speciality .ba26_home_heading p {
  color: #fff;
  margin: 0 200px;
}
@media (max-width: 1191px) {
  .ba26_home_speciality .ba26_home_heading p {
    margin: 0 20px;
  }
}
@media (max-width: 767px) {
  .ba26_home_speciality .ba26_home_heading {
    margin-bottom: 40px;
  }
}
@media (max-width: 591px) {
  .ba26_home_speciality .ba26_home_heading {
    margin-bottom: 30px;
  }
  .ba26_home_speciality .ba26_home_heading p {
    margin: 0;
  }
}
@media (max-width: 1380px) {
  .ba26_home_speciality {
    padding-top: 20px;
    padding-bottom: 95px;
  }
}
@media (max-width: 1191px) {
  .ba26_home_speciality {
    padding-top: 0;
    padding-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .ba26_home_speciality {
    padding-bottom: 45px;
  }
}
@media (max-width: 591px) {
  .ba26_home_speciality .row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .ba26_home_speciality .row [class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.ba26_home_speciality__card {
  text-align: center;
  margin-bottom: 35px;
  display: block;
}
.ba26_home_speciality__card .ba26_home_speciality__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 135%;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 0;
}
.ba26_home_speciality__card .ba26_home_speciality__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  min-width: 120px;
  height: 120px;
  background: #032144;
  border: 1px solid #032144;
  box-shadow: 0px 10px 30px rgba(5, 55, 113, 0.05);
  border-radius: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
  transition: 0.3s ease;
  padding: 25px;
}
.ba26_home_speciality__card:hover .ba26_home_speciality__icon {
  transform: scale(1.1);
}
@media (max-width: 1280px) {
  .ba26_home_speciality__card .ba26_home_speciality__title {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .ba26_home_speciality__card {
    margin-bottom: 30px;
  }
  .ba26_home_speciality__card .ba26_home_speciality__icon {
    width: 100px;
    min-width: 100px;
    height: 100px;
    margin-bottom: 12px;
  }
  .ba26_home_speciality__card:hover .ba26_home_speciality__icon {
    transform: none;
  }
}
@media (max-width: 591px) {
  .ba26_home_speciality__card .ba26_home_speciality__icon {
    width: 80px;
    min-width: 80px;
    height: 80px;
    margin-bottom: 10px;
    padding: 18px;
  }
  .ba26_home_speciality__card .ba26_home_speciality__title {
    font-size: 14px;
  }
  .ba26_home_speciality__card .ba26_home_speciality__title br {
    display: none;
  }
}

.ba26_home_cta {
  position: relative;
}
.ba26_home_cta .ba26_home_cta__bg {
  width: 100%;
}
.ba26_home_cta .ba26_home_cta__title {
  color: #fff;
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.ba26_home_cta p {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
}
.ba26_home_cta .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.ba26_home_cta .ba26_home_cta_content {
  padding-left: 40px;
}
.ba26_home_cta .ba26_home_cta__btns {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ba26_home_cta .ba26_home_cta__bg-mobile {
  display: none;
}
@media (max-width: 1380px) {
  .ba26_home_cta .ba26_home_cta__title {
    font-size: 36px;
  }
}
@media (max-width: 1191px) {
  .ba26_home_cta {
    height: 320px;
  }
  .ba26_home_cta .ba26_home_cta__title {
    font-size: 32px;
  }
  .ba26_home_cta .ba26_home_cta_content {
    padding-left: 0px;
  }
  .ba26_home_cta p {
    font-size: 18px;
  }
  .ba26_home_cta .ba26_home_cta__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .ba26_home_cta {
    height: 300px;
  }
  .ba26_home_cta .ba26_home_cta__title {
    font-size: 28px;
  }
  .ba26_home_cta .ba26_home_cta__bg {
    object-position: 20% center;
  }
  .ba26_home_cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  }
  .ba26_home_cta .ba26_home_cta_content {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .ba26_home_cta {
    height: 270px;
  }
  .ba26_home_cta .ba26_home_cta__title {
    font-size: 24px;
  }
  .ba26_home_cta .ba26_home_cta__bg {
    object-position: 30% center;
  }
}
@media (max-width: 591px) {
  .ba26_home_cta {
    height: auto;
  }
  .ba26_home_cta .ba26_home_cta__bg {
    display: none;
  }
  .ba26_home_cta .ba26_home_cta__bg-mobile {
    display: block;
    height: 480px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .ba26_home_cta .ba26_home_cta__title {
    margin-bottom: 10px;
  }
  .ba26_home_cta p {
    font-size: 16px;
  }
  .ba26_home_cta .ba26_home_cta__btns {
    margin-top: 20px;
    gap: 10px;
  }
  .ba26_home_cta::after {
    background: linear-gradient(180deg, rgba(22, 40, 41, 0) 8.47%, #162829 66.98%);
    top: auto;
    height: 70%;
    bottom: 0;
  }
  .ba26_home_cta .ba26_home_cta_content {
    padding: 30px 0;
  }
  .ba26_home_cta .container {
    top: auto;
    left: 0;
    transform: unset;
    bottom: 0;
  }
}

.ba26_home_location {
  text-align: center;
  padding-top: 130px;
  padding-bottom: 235px;
  position: relative;
}
.ba26_home_location .ba26_home_heading p {
  font-weight: 400;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.ba26_home_location .ba26_home_location__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  height: 100%;
  transform: translate(-50%, -50%);
}
.ba26_home_location .ba26_home_location__map {
  width: 800px;
}
.ba26_home_location .ba26_home_location__form {
  justify-content: center;
  gap: 10px;
  display: none;
}
.ba26_home_location .ba26_home_location__form .form-select {
  flex: 1;
}
@media (max-width: 1380px) {
  .ba26_home_location {
    padding-top: 90px;
    padding-bottom: 180px;
  }
}
@media (max-width: 1191px) {
  .ba26_home_location {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}
@media (max-width: 991px) {
  .ba26_home_location .ba26_home_location__map {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .ba26_home_location {
    padding-top: 20px;
    padding-bottom: 80px;
  }
  .ba26_home_location .ba26_home_location__map {
    display: none;
  }
  .ba26_home_location .ba26_home_location__form {
    display: flex;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #D2DBE5;
    box-shadow: 0px 3px 3px rgba(113, 130, 152, 0.1);
    border-radius: 8px;
  }
}
@media (max-width: 591px) {
  .ba26_home_location {
    padding-top: 0px;
    padding-bottom: 60px;
  }
  .ba26_home_location .ba26_home_location__bg {
    object-fit: cover;
  }
}
@media (max-width: 340px) {
  .ba26_home_location .ba26_home_location__form {
    padding: 15px;
  }
}

.ba26_providers_heading {
  margin-bottom: 40px;
}
.ba26_providers_heading .ba26_providers_heading__title {
  font-size: 40px;
  color: #042C5A;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ba26_providers_heading.ba26_providers_heading--center {
  text-align: center;
}
.ba26_providers_heading p {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
}
@media (max-width: 1380px) {
  .ba26_providers_heading .ba26_providers_heading__title {
    font-size: 36px;
  }
}
@media (max-width: 1191px) {
  .ba26_providers_heading .ba26_providers_heading__title {
    font-size: 32px;
  }
  .ba26_providers_heading p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .ba26_providers_heading .ba26_providers_heading__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .ba26_providers_heading {
    margin-bottom: 30px;
  }
  .ba26_providers_heading .ba26_providers_heading__title {
    font-size: 24px;
  }
  .ba26_providers_heading p {
    font-size: 16px;
  }
}

.ba26_providers_hero {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 150px);
  min-height: 550px;
}
.ba26_providers_hero .ba26_providers_hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
}
.ba26_providers_hero .ba26_providers_hero__woman {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
}
.ba26_providers_hero .ba26_providers_hero__inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
.ba26_providers_hero .ba26_providers_hero__subtitle {
  color: var(--ba26-primary-500);
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 15px;
}
.ba26_providers_hero .ba26_providers_hero__title {
  font-weight: 600;
  font-size: 52px;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #042C5A;
}
.ba26_providers_hero p {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: var(--ba26-gray);
  max-width: 660px;
}
.ba26_providers_hero .ba26_providers_hero__btns {
  display: flex;
  margin-top: 25px;
  gap: 16px;
}
.ba26_providers_hero .ba26_providers_hero__img-mobile {
  display: none;
}
.ba26_providers_hero .ba26_providers_hero-mobile {
  display: none;
}
.ba26_providers_hero .ba26_providers_hero_tooltip {
  position: absolute;
  background-color: var(--ba26-primary-25);
  border-radius: 10px;
  font-size: 15px;
  color: var(--ba26-gray);
}
.ba26_providers_hero .ba26_providers_hero_tooltip .ba26_providers_hero_tooltip__icon {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background-color: var(--ba26-primary-500);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--left {
  width: 185px;
  top: 38%;
  right: 22%;
  padding: 25px 20px 25px 22px;
  z-index: 3;
  animation: upDown 5s ease-in-out infinite;
}
.ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--left .ba26_providers_hero_tooltip__icon {
  left: -20px;
  top: -20px;
}
.ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--right {
  width: 195px;
  top: 24%;
  left: 81%;
  padding: 18px 20px 15px 38px;
  animation: downUp 5s ease-in-out infinite;
}
.ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--right .ba26_providers_hero_tooltip__icon {
  right: -20px;
  top: -20px;
  background-color: var(--ba26-primary-500);
}
@media (max-width: 1380px) {
  .ba26_providers_hero .ba26_providers_hero__title {
    font-size: 42px;
  }
  .ba26_providers_hero p {
    font-size: 18px;
  }
  .ba26_providers_hero .ba26_providers_hero__subtitle {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--right {
    left: 80%;
  }
  .ba26_providers_hero .ba26_providers_hero__woman {
    object-position: 83% center;
  }
}
@media (max-width: 1191px) {
  .ba26_providers_hero .ba26_providers_hero__title {
    font-size: 34px;
    margin-bottom: 12px;
  }
  .ba26_providers_hero .ba26_providers_hero__subtitle {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .ba26_providers_hero p {
    font-size: 16px;
  }
  .ba26_providers_hero .ba26_providers_hero__woman {
    left: -40px;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip {
    font-size: 14px;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip .ba26_providers_hero_tooltip__icon {
    height: 42px;
    width: 42px;
    padding: 10px;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--left {
    right: 27%;
    padding: 18px 10px 17px 25px;
    width: 170px;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--right {
    left: 75%;
    padding: 18px 15px 15px 48px;
  }
}
@media (max-width: 991px) {
  .ba26_providers_hero .ba26_providers_hero__title {
    font-size: 28px;
  }
  .ba26_providers_hero .ba26_providers_hero__title br {
    display: none;
  }
  .ba26_providers_hero .ba26_providers_hero__subtitle {
    font-size: 18px;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--right {
    left: 71%;
    padding: 15px 20px 15px 50px;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--left {
    right: 32%;
    padding: 12px 15px 12px 22px;
    top: 40%;
  }
  .ba26_providers_hero .ba26_providers_hero__inner {
    top: 45%;
  }
}
@media (max-width: 767px) {
  .ba26_providers_hero {
    height: auto;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip {
    display: none;
  }
  .ba26_providers_hero .ba26_providers_hero__woman,
  .ba26_providers_hero .ba26_providers_hero__img {
    display: none;
  }
  .ba26_providers_hero .ba26_providers_hero-mobile {
    display: block;
  }
  .ba26_providers_hero .ba26_providers_hero-mobile {
    position: relative;
  }
  .ba26_providers_hero .ba26_providers_hero-mobile .ba26_providers_hero__img-mobile {
    display: block;
  }
  .ba26_providers_hero .ba26_providers_hero-mobile .ba26_providers_hero__woman-mobile {
    position: absolute;
    top: 0;
  }
  .ba26_providers_hero p {
    margin-right: 0;
    max-width: 440px;
  }
  .ba26_providers_hero .ba26_providers_hero__inner {
    padding-top: 40px;
    position: relative;
    transform: unset;
    top: unset;
  }
  .ba26_providers_hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #f8f5ef;
    height: 60%;
    width: 100%;
    z-index: -1;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--left {
    right: 50%;
    padding: 12px 12px 12px 20px;
    top: 60%;
    display: block;
    width: 140px;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip {
    font-size: 13px;
  }
}
@media (max-width: 591px) {
  .ba26_providers_hero .ba26_providers_hero__btns {
    gap: 10px;
  }
  .ba26_providers_hero p {
    margin-right: 0;
  }
  .ba26_providers_hero .ba26_providers_hero-mobile {
    height: 500px;
    width: 100%;
  }
  .ba26_providers_hero .ba26_providers_hero__woman-mobile,
  .ba26_providers_hero .ba26_providers_hero__img-mobile {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes downUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.ba26_providers_speciality {
  padding-bottom: 80px;
}
.ba26_providers_speciality .ba26_providers_heading {
  margin-bottom: 60px;
}
.ba26_providers_speciality .ba26_providers_heading p {
  margin: 0 200px;
}
@media (max-width: 1191px) {
  .ba26_providers_speciality .ba26_providers_heading p {
    margin: 0 20px;
  }
}
@media (max-width: 767px) {
  .ba26_providers_speciality .ba26_providers_heading {
    margin-bottom: 40px;
  }
}
@media (max-width: 591px) {
  .ba26_providers_speciality .ba26_providers_heading {
    margin-bottom: 30px;
  }
  .ba26_providers_speciality .ba26_providers_heading p {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .ba26_providers_speciality {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .ba26_providers_speciality {
    padding-bottom: 30px;
  }
}
@media (max-width: 591px) {
  .ba26_providers_speciality .row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .ba26_providers_speciality .row [class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.ba26_providers_speciality__card {
  text-align: center;
  margin-bottom: 35px;
  display: block;
}
.ba26_providers_speciality__card .ba26_providers_speciality__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 135%;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  color: var(--ba26-gray);
}
.ba26_providers_speciality__card .ba26_providers_speciality__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  min-width: 120px;
  height: 120px;
  background: var(--ba26-primary-25);
  border: 1px solid var(--ba26-primary-25);
  box-shadow: 0px 10px 30px rgba(5, 55, 113, 0.05);
  border-radius: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
  transition: 0.3s ease;
  padding: 25px;
}
.ba26_providers_speciality__card:hover .ba26_providers_speciality__icon {
  transform: scale(1.1);
}
@media (max-width: 1280px) {
  .ba26_providers_speciality__card .ba26_providers_speciality__title {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .ba26_providers_speciality__card {
    margin-bottom: 30px;
  }
  .ba26_providers_speciality__card .ba26_providers_speciality__icon {
    width: 100px;
    min-width: 100px;
    height: 100px;
    margin-bottom: 12px;
  }
}
@media (max-width: 591px) {
  .ba26_providers_speciality__card .ba26_providers_speciality__icon {
    width: 80px;
    min-width: 80px;
    height: 80px;
    margin-bottom: 10px;
    padding: 18px;
  }
  .ba26_providers_speciality__card .ba26_providers_speciality__title {
    font-size: 14px;
  }
  .ba26_providers_speciality__card .ba26_providers_speciality__title br {
    display: none;
  }
}

.ba26_providers_cta {
  position: relative;
}
.ba26_providers_cta .ba26_providers_cta__bg {
  width: 100%;
}
.ba26_providers_cta .ba26_providers_cta__title {
  color: #fff;
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.ba26_providers_cta .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.ba26_providers_cta .ba26_providers_cta_content {
  padding-left: 40px;
}
.ba26_providers_cta .ba26_providers_cta__btns {
  margin-top: 25px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ba26_providers_cta .ba26_providers_cta__bg-mobile {
  display: none;
}
@media (max-width: 1380px) {
  .ba26_providers_cta .ba26_providers_cta__title {
    font-size: 36px;
  }
}
@media (max-width: 1191px) {
  .ba26_providers_cta {
    height: 320px;
  }
  .ba26_providers_cta .ba26_providers_cta__title {
    font-size: 32px;
  }
  .ba26_providers_cta .ba26_providers_cta_content {
    padding-left: 0px;
  }
  .ba26_providers_cta .ba26_providers_cta__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .ba26_providers_cta {
    height: 300px;
  }
  .ba26_providers_cta .ba26_providers_cta__title {
    font-size: 28px;
  }
  .ba26_providers_cta .ba26_providers_cta__bg {
    object-position: 70% center;
  }
  .ba26_providers_cta .ba26_home_cta_content {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .ba26_providers_cta {
    height: 270px;
  }
  .ba26_providers_cta .ba26_providers_cta__title {
    font-size: 24px;
  }
}
@media (max-width: 591px) {
  .ba26_providers_cta {
    height: auto;
  }
  .ba26_providers_cta .ba26_providers_cta__bg {
    display: none;
  }
  .ba26_providers_cta .ba26_providers_cta__bg-mobile {
    display: block;
    height: 480px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .ba26_providers_cta .ba26_providers_cta__title {
    margin-bottom: 10px;
  }
  .ba26_providers_cta .ba26_providers_cta__btns {
    margin-top: 20px;
    gap: 10px;
  }
  .ba26_providers_cta::after {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, rgba(22, 40, 41, 0) 10%, #162929 70%);
    left: 0;
    height: 70%;
    bottom: 0;
    width: 100%;
    opacity: 0.95;
  }
  .ba26_providers_cta .ba26_providers_cta_content {
    padding: 30px 0;
  }
  .ba26_providers_cta .container {
    top: auto;
    left: 0;
    transform: unset;
    bottom: 0;
  }
}

.ba26_providers_faq {
  padding-top: 100px;
  padding-bottom: 60px;
  background: linear-gradient(80.34deg, #D5F0F0 1.11%, #E4F0FF 99.1%);
}
.ba26_providers_faq .ba26_providers_heading {
  margin-bottom: 30px;
  margin-top: 20px;
  margin-right: 50px;
}
@media (max-width: 1191px) {
  .ba26_providers_faq {
    padding-top: 90px;
  }
}
@media (max-width: 991px) {
  .ba26_providers_faq {
    padding-top: 90px;
  }
  .ba26_providers_faq .ba26_providers_heading {
    margin-top: 0;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .ba26_providers_faq {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.ba26_providers_faq .ba26_providers_form {
  padding: 30px;
  background: #FFFFFF;
  border: 1px solid #D2DBE5;
  box-shadow: 0px 3px 3px rgba(113, 130, 152, 0.1);
  border-radius: 12px;
}
@media (max-width: 991px) {
  .ba26_providers_faq .ba26_providers_form {
    margin-top: 30px;
  }
}
.ba26_providers_faq .ba26_providers_faq_contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 25px 30px;
  gap: 38px;
  background: #FFFFFF;
  border-radius: 10px;
  margin-right: 12px;
  justify-content: space-between;
}
.ba26_providers_faq .ba26_providers_faq_contact h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: var(--ba26-primary);
  margin-bottom: 0;
}
.ba26_providers_faq .ba26_providers_faq_contact p {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--ba26-gray);
  margin-bottom: 0;
}
.ba26_providers_faq .ba26_providers_faq_contact .ba26_providers_faq_contact__btn {
  white-space: nowrap;
}
@media (max-width: 1191px) {
  .ba26_providers_faq .ba26_providers_faq_contact {
    flex-direction: column;
    align-items: start;
    padding: 20px 25px;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .ba26_providers_faq .ba26_providers_faq_contact {
    flex-direction: row;
    align-items: center;
    margin-bottom: 40px;
    margin-right: 0;
  }
  .ba26_providers_faq .ba26_providers_faq_contact h3 {
    font-size: 20px;
  }
}
@media (max-width: 591px) {
  .ba26_providers_faq .ba26_providers_faq_contact {
    flex-direction: column;
    align-items: start;
    margin-bottom: 20px;
  }
}

.ba26_providers_accordion__item {
  margin-bottom: 10px;
}
.ba26_providers_accordion__item .ba26_providers_accordion__link {
  color: var(--ba26-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ba26_providers_accordion__item .ba26_providers_accordian__btn {
  padding: 12px 20px;
  gap: 10px;
  min-height: 46px;
  background: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  border: 0;
  width: 100%;
  font-size: 18px;
  font-family: inherit;
  font-weight: 400;
  line-height: 130%;
  color: var(--ba26-secondary-900);
  cursor: pointer;
  transition: 0.4s;
  position: relative;
  justify-content: space-between;
  text-align: start;
}
.ba26_providers_accordion__item .ba26_providers_accordian__btn::after {
  content: "";
  padding: 3px;
  width: 20px;
  height: 20px;
  background: #F0F4F7;
  border-radius: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.00008 2.91602V11.0827M2.91675 6.99935H11.0834' stroke='black' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
  transition: transform 0.4s ease;
}
.ba26_providers_accordion__item.active .ba26_providers_accordian__btn::after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.91675 7H11.0834' stroke='black' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ba26_providers_accordion__item .ba26_providers_accordian__collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.ba26_providers_accordion__item .ba26_providers_accordian__collapse .ba26_providers_accordian__body {
  padding: 20px 15px 10px;
}
.ba26_providers_accordion__item .ba26_providers_accordian__collapse .ba26_providers_accordian__body p:last-child {
  margin-bottom: 0;
}

.ba26_providers_everything {
  padding-top: 100px;
  padding-bottom: 70px;
}
@media (max-width: 1191px) {
  .ba26_providers_everything {
    padding-top: 90px;
  }
}
@media (max-width: 991px) {
  .ba26_providers_everything {
    padding-top: 90px;
  }
}
@media (max-width: 767px) {
  .ba26_providers_everything {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.ba26_providers_everything .ba26_providers_heading {
  margin-right: 100px;
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .ba26_providers_everything .ba26_providers_heading {
    position: static;
  }
}
@media (max-width: 591px) {
  .ba26_providers_everything .ba26_providers_heading {
    margin-right: 0;
  }
}

.ba26_providers_everything_card {
  display: flex;
  align-items: center;
  padding: 25px;
  background: var(--ba26-primary-25);
  border-radius: 15px;
  margin-bottom: 15px;
}
.ba26_providers_everything_card p:last-child {
  margin-bottom: 0;
}
.ba26_providers_everything_card .ba26_providers_everything_card__title {
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.ba26_providers_growth {
  padding-top: 80px;
  padding-bottom: 140px;
}
@media (max-width: 1380px) {
  .ba26_providers_growth {
    padding-bottom: 100px;
  }
}
@media (max-width: 1191px) {
  .ba26_providers_growth {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .ba26_providers_growth {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .ba26_providers_growth {
    padding-bottom: 60px;
  }
}
@media (max-width: 591px) {
  .ba26_providers_growth {
    padding-top: 30px;
  }
}
.ba26_providers_growth .ba26_providers_heading p {
  font-size: 24px;
  color: var(--ba26-secondary-800);
  padding: 0 30px;
}
.ba26_providers_growth .ba26_providers_growth__image {
  position: relative;
  margin-top: 10px;
}
.ba26_providers_growth .ba26_providers_growth__image img {
  max-width: 100%;
}
.ba26_providers_growth .ba26_providers_growth__image .ba26_providers_growth__image_bg {
  border-radius: 16px;
  height: 388px;
  object-fit: cover;
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 100%;
}
.ba26_providers_growth .ba26_providers_growth__image .ba26_providers_growth__image_front {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 444px;
  object-fit: cover;
  z-index: 1;
  border-radius: 16px;
}
.ba26_providers_growth .ba26_providers_growth__info {
  margin-left: -75px;
  position: relative;
  z-index: 2;
}
.ba26_providers_growth .ba26_providers_growth__item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.ba26_providers_growth .ba26_providers_growth__icon {
  width: 100px;
  min-width: 100px;
  height: 100px;
  background: radial-gradient(70.62% 70.62% at 31.21% 29.38%, #FFFFFF 0%, #ABE1E0 100%);
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(213, 240, 240, 0.3);
}
.ba26_providers_growth .ba26_providers_growth__title {
  font-size: 24px;
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 8px;
}
.ba26_providers_growth .ba26_providers_growth__text {
  font-size: 20px;
  color: var(--ba26-gray-900);
  margin-bottom: 0;
}
@media (max-width: 1380px) {
  .ba26_providers_growth .ba26_providers_heading p {
    font-size: 20px;
  }
  .ba26_providers_growth .ba26_providers_growth__title {
    font-size: 20px;
  }
}
@media (max-width: 1191px) {
  .ba26_providers_growth .ba26_providers_heading p {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .ba26_providers_growth .ba26_providers_heading p {
    font-size: 18px;
  }
  .ba26_providers_growth .ba26_providers_growth__image {
    margin-top: 0;
  }
  .ba26_providers_growth .ba26_providers_growth__info {
    margin-left: 0;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .ba26_providers_growth .ba26_providers_growth__icon {
    width: 80px;
    min-width: 80px;
    height: 80px;
  }
}
@media (max-width: 591px) {
  .ba26_providers_growth .ba26_providers_growth__text {
    font-size: 16px;
  }
  .ba26_providers_growth .ba26_providers_growth__image .ba26_providers_growth__image_bg {
    height: 235px;
  }
  .ba26_providers_growth .ba26_providers_growth__image .ba26_providers_growth__image_front {
    height: 270px;
  }
}

.ba26_providers_article .ba26_providers_article__inner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.ba26_providers_article .ba26_providers_article__content {
  position: absolute;
  background: rgba(31, 32, 30, 0.2);
  backdrop-filter: blur(2px);
  border-radius: 12px;
  height: 100%;
  max-width: 700px;
  z-index: 1;
  top: 0;
  right: 0;
  color: #fff;
  padding: 75px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ba26_providers_article .ba26_providers_article__title {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}
.ba26_providers_article .ba26_providers_article__quote {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #FFFFFF;
  font-style: italic;
  margin-bottom: 20px;
}
.ba26_providers_article p {
  font-weight: 400;
}
.ba26_providers_article .ba26_providers_article__image-mobile {
  display: none;
}
@media (max-width: 1380px) {
  .ba26_providers_article .ba26_providers_article__title {
    font-size: 36px;
  }
  .ba26_providers_article .ba26_providers_article__quote {
    font-size: 18px;
  }
  .ba26_providers_article .ba26_providers_article__content {
    padding: 40px 60px 40px;
  }
}
@media (max-width: 1191px) {
  .ba26_providers_article .ba26_providers_article__title {
    font-size: 32px;
  }
  .ba26_providers_article .ba26_providers_article__inner img {
    width: 100%;
    height: 480px;
    object-fit: cover;
  }
  .ba26_providers_article .ba26_providers_article__content {
    max-width: 600px;
    padding: 40px 50px 40px;
  }
}
@media (max-width: 991px) {
  .ba26_providers_article .ba26_providers_article__title {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .ba26_providers_article .ba26_providers_article__quote {
    font-size: 16px;
  }
  .ba26_providers_article p {
    font-size: 15px;
  }
  .ba26_providers_article .ba26_providers_article__content {
    max-width: 480px;
    padding: 30px;
  }
  .ba26_providers_article .ba26_providers_article__inner img {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .ba26_providers_article .ba26_providers_article__title {
    font-size: 24px;
  }
  .ba26_providers_article .ba26_providers_article__image {
    display: none;
  }
  .ba26_providers_article .ba26_providers_article__image-mobile {
    display: block;
  }
  .ba26_providers_article .ba26_providers_article__inner img {
    height: auto;
  }
  .ba26_providers_article .ba26_providers_article__content {
    position: static;
    max-width: 100%;
    border-radius: 0 0 12px 12px;
    background: #1e5052;
  }
}
@media (max-width: 591px) {
  .ba26_providers_article .ba26_providers_article__content {
    padding: 20px;
  }
}

.ba26_providers_medical_career {
  position: relative;
  padding-top: 170px;
  padding-bottom: 100px;
}
.ba26_providers_medical_career .container {
  position: relative;
}
.ba26_providers_medical_career .ba26_providers_medical_career__bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  width: 800px;
  left: -35%;
  aspect-ratio: 2/2;
}
.ba26_providers_medical_career .ba26_providers_medical_career__btn {
  min-width: 140px;
  margin-top: 20px;
}
.ba26_providers_medical_career .ba26_providers_heading {
  margin-right: -30px;
  margin-bottom: 30px;
}
.ba26_providers_medical_career .ba26_providers_medical_career__map {
  padding: 0 35px;
}
.ba26_providers_medical_career .ba26_providers_medical_career__form {
  justify-content: center;
  gap: 10px;
  display: none;
}
.ba26_providers_medical_career .ba26_providers_medical_career__form .form-select {
  flex: 1;
}
@media (max-width: 1480px) {
  .ba26_providers_medical_career .ba26_providers_medical_career__bg {
    left: -20%;
  }
}
@media (max-width: 1380px) {
  .ba26_providers_medical_career {
    padding-top: 120px;
  }
}
@media (max-width: 1191px) {
  .ba26_providers_medical_career {
    padding-top: 100px;
  }
  .ba26_providers_medical_career .ba26_providers_medical_career__bg {
    width: 500px;
  }
}
@media (max-width: 991px) {
  .ba26_providers_medical_career {
    padding-top: 80px;
  }
  .ba26_providers_medical_career .ba26_providers_heading {
    text-align: center;
  }
  .ba26_providers_medical_career .ba26_providers_medical_career__btn {
    margin-top: 10px;
  }
  .ba26_providers_medical_career .ba26_providers_medical_career__bg {
    width: 100%;
    left: 0;
  }
}
@media (max-width: 767px) {
  .ba26_providers_medical_career {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ba26_providers_medical_career .ba26_providers_medical_career__map {
    display: none;
  }
  .ba26_providers_medical_career .ba26_providers_medical_career__form {
    display: flex;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #D2DBE5;
    box-shadow: 0px 3px 3px rgba(113, 130, 152, 0.1);
    border-radius: 8px;
  }
}
@media (max-width: 591px) {
  .ba26_providers_medical_career {
    padding-top: 50px;
  }
  .ba26_providers_medical_career .ba26_providers_heading {
    margin-right: 0;
  }
  .ba26_providers_medical_career .ba26_providers_medical_career__map {
    padding: 0;
  }
  .ba26_providers_medical_career .ba26_providers_medical_career__bg {
    object-fit: cover;
  }
}
@media (max-width: 340px) {
  .ba26_providers_medical_career .ba26_providers_medical_career__form {
    padding: 15px;
  }
}

.ba26_providers_journey {
  padding-top: 170px;
  padding-bottom: 145px;
}
@media (max-width: 1380px) {
  .ba26_providers_journey {
    padding-top: 120px;
  }
}
@media (max-width: 1191px) {
  .ba26_providers_journey {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .ba26_providers_journey {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .ba26_providers_journey {
    padding-bottom: 40px;
    padding-top: 10px;
  }
}
.ba26_providers_journey .ba26_providers_journey__btns {
  display: flex;
  margin-top: 32px;
  gap: 16px;
  justify-content: center;
}
@media (max-width: 575px) {
  .ba26_providers_journey .ba26_providers_journey__btns {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.ba26_providers_journey .ba26_providers_heading {
  margin-bottom: 60px;
}
.ba26_providers_journey .ba26_providers_heading h3 {
  font-size: 32px;
}
.ba26_providers_journey .ba26_providers_heading .ba26_providers_heading__title {
  margin-bottom: 5px;
}
@media (max-width: 1380px) {
  .ba26_providers_journey .ba26_providers_heading h3 {
    font-size: 24px;
  }
}
@media (max-width: 1191px) {
  .ba26_providers_journey .ba26_providers_heading h3 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .ba26_providers_journey .ba26_providers_heading {
    margin-bottom: 30px;
  }
}
@media (max-width: 591px) {
  .ba26_providers_journey .ba26_providers_heading h3 {
    font-size: 18px;
  }
}
.ba26_providers_journey .ba26_providers_journey_card {
  padding: 20px 25px;
  background: #FFFFFF;
  border: 1px solid var(--ba26-secondary-50);
  border-radius: 10px;
}
.ba26_providers_journey .ba26_providers_journey_card .ba26_providers_journey_card__title {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.02em;
  transition: all 0.25s;
}
.ba26_providers_journey .ba26_providers_journey_card p {
  margin-bottom: 0;
  font-size: 18px;
  transition: all 0.25s;
}
@media (max-width: 1191px) {
  .ba26_providers_journey .ba26_providers_journey_card {
    padding: 18px 20px;
  }
  .ba26_providers_journey .ba26_providers_journey_card .ba26_providers_journey_card__title {
    margin-bottom: 5px;
    font-size: 20px;
  }
  .ba26_providers_journey .ba26_providers_journey_card p {
    font-size: 16px;
  }
}
@media (max-width: 591px) {
  .ba26_providers_journey .ba26_providers_journey_card .ba26_providers_journey_card__title {
    font-size: 18px;
  }
}

.ba26_providers_journey_step_wrapper {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.ba26_providers_journey_step_wrapper .ba26_providers_journey_step__line {
  position: absolute;
  left: calc(50% + 22px);
  transform: translateX(-50%);
  top: -92px;
}
@media (max-width: 991px) {
  .ba26_providers_journey_step_wrapper {
    padding-left: 60px;
  }
  .ba26_providers_journey_step_wrapper .ba26_providers_journey_step__line {
    display: none;
  }
}

.ba26_providers_journey_step {
  position: relative;
  height: 152px;
}
@media (max-width: 991px) {
  .ba26_providers_journey_step {
    height: 100%;
    margin-bottom: 10px;
  }
}
.ba26_providers_journey_step .ba26_providers_journey_card {
  width: 432px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.ba26_providers_journey_step .ba26_providers_journey_card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, #053771 -22.96%, #00A5A2 100%);
  transition: all 0.25s;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
}
.ba26_providers_journey_step .ba26_providers_journey_card .ba26_providers_journey_card__inner {
  position: relative;
  z-index: 1;
}
.ba26_providers_journey_step .ba26_providers_journey_card .ba26_providers_journey_step_btn {
  margin-top: 10px;
}
.ba26_providers_journey_step .ba26_providers_journey_step_num {
  padding: 10px;
  width: 60px;
  height: 60px;
  background: var(--ba26-secondary-25);
  box-shadow: inset 0px -5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: var(--ba26-secondary-800);
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.25s;
  z-index: 2;
}
.ba26_providers_journey_step.ba26_providers_journey_step--right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.ba26_providers_journey_step.active .ba26_providers_journey_step_num {
  background-color: var(--ba26-primary);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(213, 240, 240, 0.3);
}
.ba26_providers_journey_step.active .ba26_providers_journey_card::after {
  opacity: 1;
}
.ba26_providers_journey_step.active .ba26_providers_journey_card .ba26_providers_journey_card__title {
  color: #fff;
}
.ba26_providers_journey_step.active .ba26_providers_journey_card p {
  color: #fff;
}
@media (max-width: 1191px) {
  .ba26_providers_journey_step .ba26_providers_journey_card {
    width: 380px;
  }
}
@media (max-width: 991px) {
  .ba26_providers_journey_step .ba26_providers_journey_card {
    width: 100%;
  }
  .ba26_providers_journey_step .ba26_providers_journey_step_num {
    padding: 5px;
    width: 50px;
    height: 50px;
    font-size: 16px;
    top: 10px;
    left: -60px;
    transform: unset;
  }
}

#stepLogo {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 1%;
  transform: translateX(-50%);
}
#stepLogo img {
  transform: rotate(-145deg);
}
@media (max-width: 991px) {
  #stepLogo {
    display: none;
  }
}

.ba26_providers_app .ba26_providers_app__inner {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 60px 50px;
  margin: 0;
}
.ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__title {
  color: #fff;
  font-size: 32px;
  margin-bottom: 10px;
}
.ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__logo {
  width: 180px;
}
.ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__content-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.ba26_providers_app .ba26_providers_app__inner p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  padding-right: 100px;
}
.ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__btn {
  margin-top: 14px;
}
.ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__mobile-view {
  position: absolute;
  z-index: 1;
  width: 260px;
  bottom: 0;
  right: 40px;
  padding: 0;
}
.ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__mobile-view .ba26_providers_app__mobile {
  width: 100%;
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.25));
}
.ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__mobile-view .ba26_providers_app__mobile-card {
  width: 88%;
  position: absolute;
  filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.25));
  border-radius: 15px;
  top: 58%;
  left: -10%;
  z-index: 1;
  animation: wobble 4s infinite;
}
.ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__image-mobile {
  display: none;
}
@media (max-width: 1191px) {
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__mobile-view {
    width: 180px;
    right: 30px;
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__content {
    padding: 40px 30px;
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__title {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
  }
  .ba26_providers_app .ba26_providers_app__inner p {
    font-size: 18px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__mobile-view {
    width: 150px;
    right: 20px;
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__mobile-view .ba26_providers_app__mobile-card {
    border-radius: 8px;
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__content {
    padding: 35px 25px;
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__image {
    height: 280px;
    object-fit: cover;
    object-position: -80px center;
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__title {
    font-size: 24px;
  }
  .ba26_providers_app .ba26_providers_app__inner p {
    font-size: 16px;
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__btn {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .ba26_providers_app .ba26_providers_app__inner {
    border-radius: 12px;
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__image {
    min-height: 235px;
    object-position: -100px center;
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__content {
    padding: 30px 20px;
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__mobile-view {
    width: 115px;
    right: 10px;
  }
}
@media (max-width: 591px) {
  .ba26_providers_app .ba26_providers_app__inner {
    background-color: var(--ba26-primary-700);
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__mobile-view {
    display: none;
  }
  .ba26_providers_app .ba26_providers_app__inner p {
    font-size: 15px;
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__title {
    font-size: 20px;
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__content {
    bottom: 0;
    padding: 35px 10px 25px 10px;
    position: static;
    margin-top: -180px;
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__image {
    display: none;
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__image-mobile {
    display: block;
    width: 100%;
    object-fit: cover;
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__logo {
    width: 150px;
    top: 30px;
    position: absolute;
  }
  .ba26_providers_app .ba26_providers_app__inner::after {
    content: "";
    background: linear-gradient(180deg, rgba(68, 154, 135, 0) 10%, #035D5C 40%);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 57%;
  }
  .ba26_providers_app .ba26_providers_app__inner .ba26_providers_app__content-col {
    z-index: 1;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: rotate(-1deg) translate(-5px, -5px);
    transform: rotate(-1deg) translate(-5px, -5px);
  }
  50% {
    -webkit-transform: rotate(1deg) translate(5px, 5px);
    transform: rotate(1deg) translate(5px, 5px);
  }
  100% {
    -webkit-transform: rotate(-1deg) translate(-5px, -5px);
    transform: rotate(-1deg) translate(-5px, -5px);
  }
}
.ba26_client_heading {
  margin-bottom: 40px;
}
.ba26_client_heading .ba26_client_heading__title {
  font-size: 40px;
  color: #042C5A;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ba26_client_heading.ba26_client_heading--center {
  text-align: center;
}
.ba26_client_heading p {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
}
.ba26_client_heading .ba26_client_heading__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  display: block;
  color: var(--ba26-gray);
}
@media (max-width: 1380px) {
  .ba26_client_heading .ba26_client_heading__title {
    font-size: 36px;
  }
}
@media (max-width: 1191px) {
  .ba26_client_heading .ba26_client_heading__title {
    font-size: 32px;
  }
  .ba26_client_heading p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .ba26_client_heading .ba26_client_heading__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .ba26_client_heading {
    margin-bottom: 30px;
  }
  .ba26_client_heading .ba26_client_heading__title {
    font-size: 24px;
  }
  .ba26_client_heading p {
    font-size: 16px;
  }
}

.ba26_client_hero {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 100px);
  min-height: 700px;
}
.ba26_client_hero .ba26_client_hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 0%;
}
.ba26_client_hero .ba26_client_hero__inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
.ba26_client_hero .ba26_client_hero__subtitle {
  color: var(--ba26-primary-500);
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 15px;
}
.ba26_client_hero .ba26_client_hero__title {
  font-weight: 600;
  font-size: 52px;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.ba26_client_hero p {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: var(--ba26-gray);
  max-width: 660px;
}
.ba26_client_hero .ba26_client_hero__btns {
  display: flex;
  margin-top: 25px;
  gap: 16px;
}
.ba26_client_hero .ba26_client_hero__img-mobile {
  display: none;
}
.ba26_client_hero .ba26_client_hero-mobile {
  display: none;
}
@media (max-width: 1380px) {
  .ba26_client_hero .ba26_client_hero__title {
    font-size: 42px;
  }
  .ba26_client_hero p {
    font-size: 18px;
  }
  .ba26_client_hero .ba26_client_hero__subtitle {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1191px) {
  .ba26_client_hero {
    min-height: 500px;
  }
  .ba26_client_hero .ba26_client_hero__title {
    font-size: 34px;
    margin-bottom: 12px;
  }
  .ba26_client_hero .ba26_client_hero__subtitle {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .ba26_client_hero p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .ba26_client_hero {
    height: auto;
  }
  .ba26_client_hero .ba26_client_hero__title {
    font-size: 28px;
  }
  .ba26_client_hero p {
    font-size: 15px;
  }
  .ba26_client_hero .ba26_client_hero__subtitle {
    font-size: 18px;
  }
  .ba26_client_hero .ba26_client_hero__img {
    height: 450px;
    object-fit: cover;
    object-position: 85%;
  }
  .ba26_client_hero .ba26_client_hero__inner {
    top: 45%;
  }
}
@media (max-width: 767px) {
  .ba26_client_hero {
    height: auto;
  }
  .ba26_client_hero .ba26_client_hero__img {
    display: none;
  }
  .ba26_client_hero .ba26_client_hero-mobile {
    display: block;
  }
  .ba26_client_hero .ba26_client_hero-mobile {
    position: relative;
  }
  .ba26_client_hero .ba26_client_hero-mobile .ba26_client_hero__img-mobile {
    display: block;
  }
  .ba26_client_hero p {
    margin-right: 0;
    max-width: 440px;
  }
  .ba26_client_hero .ba26_client_hero__inner {
    padding-top: 40px;
    position: relative;
    transform: unset;
    top: unset;
  }
  .ba26_client_hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #EDF3F4;
    height: 60%;
    width: 100%;
    z-index: -1;
  }
}
@media (max-width: 591px) {
  .ba26_client_hero .ba26_client_hero__btns {
    gap: 10px;
  }
  .ba26_client_hero p {
    margin-right: 0;
  }
}

.ba26_client_cta {
  position: relative;
}
.ba26_client_cta .ba26_client_cta__bg {
  width: 100%;
}
.ba26_client_cta .ba26_client_cta__title {
  color: #fff;
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.ba26_client_cta p {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
}
.ba26_client_cta .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.ba26_client_cta .ba26_client_cta__btns {
  margin-top: 25px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ba26_client_cta .ba26_client_cta__bg-mobile {
  display: none;
}
@media (max-width: 1380px) {
  .ba26_client_cta .ba26_client_cta__title {
    font-size: 36px;
  }
}
@media (max-width: 1191px) {
  .ba26_client_cta {
    height: 320px;
  }
  .ba26_client_cta .ba26_client_cta__title {
    font-size: 32px;
  }
  .ba26_client_cta p {
    font-size: 18px;
  }
  .ba26_client_cta .ba26_client_cta__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .ba26_client_cta {
    height: 300px;
  }
  .ba26_client_cta .ba26_client_cta__title {
    font-size: 28px;
  }
  .ba26_client_cta .ba26_client_cta__bg {
    object-position: 70% center;
  }
  .ba26_client_cta .ba26_home_cta_content {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .ba26_client_cta {
    height: 270px;
  }
  .ba26_client_cta .ba26_client_cta__title {
    font-size: 24px;
  }
}
@media (max-width: 591px) {
  .ba26_client_cta {
    height: auto;
  }
  .ba26_client_cta .ba26_client_cta__bg {
    display: none;
  }
  .ba26_client_cta .ba26_client_cta__bg-mobile {
    display: block;
    height: 480px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .ba26_client_cta .ba26_client_cta__title {
    margin-bottom: 10px;
  }
  .ba26_client_cta p {
    font-size: 16px;
  }
  .ba26_client_cta .ba26_client_cta__btns {
    margin-top: 20px;
    gap: 10px;
  }
  .ba26_client_cta::after {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, rgba(33, 87, 107, 0) 10%, #21576B 70%);
    left: 0;
    height: 70%;
    bottom: 0;
    width: 100%;
    opacity: 1;
  }
  .ba26_client_cta .ba26_client_cta_content {
    padding: 30px 0;
  }
  .ba26_client_cta .container {
    top: auto;
    left: 0;
    transform: unset;
    bottom: 0;
  }
}

.ba26_client_speciality {
  padding-top: 80px;
  padding-bottom: 65px;
  background: linear-gradient(80.34deg, #D5F0F0 1.11%, #E4F0FF 99.1%);
}
.ba26_client_speciality .ba26_client_heading {
  margin-bottom: 60px;
}
.ba26_client_speciality .ba26_client_heading p {
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .ba26_client_speciality {
    padding-top: 60px;
    padding-bottom: 50px;
  }
  .ba26_client_speciality .ba26_client_heading {
    margin-bottom: 40px;
  }
}
@media (max-width: 591px) {
  .ba26_client_speciality .row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .ba26_client_speciality .row [class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .ba26_client_speciality .ba26_client_heading__title br {
    display: none;
  }
}

.ba26_client_speciality__card {
  text-align: center;
  margin-bottom: 35px;
  display: block;
}
.ba26_client_speciality__card .ba26_client_speciality__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 135%;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  color: var(--ba26-gray);
}
.ba26_client_speciality__card .ba26_client_speciality__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  min-width: 120px;
  height: 120px;
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0px 10px 30px rgba(5, 55, 113, 0.05);
  border-radius: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
  transition: 0.3s ease;
  padding: 25px;
}
.ba26_client_speciality__card:hover .ba26_client_speciality__icon {
  transform: scale(1.1);
}
@media (max-width: 1280px) {
  .ba26_client_speciality__card .ba26_client_speciality__title {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .ba26_client_speciality__card {
    margin-bottom: 30px;
  }
  .ba26_client_speciality__card .ba26_client_speciality__icon {
    width: 100px;
    min-width: 100px;
    height: 100px;
    margin-bottom: 12px;
  }
}
@media (max-width: 591px) {
  .ba26_client_speciality__card .ba26_client_speciality__icon {
    width: 80px;
    min-width: 80px;
    height: 80px;
    margin-bottom: 10px;
    padding: 18px;
  }
  .ba26_client_speciality__card .ba26_client_speciality__title {
    font-size: 14px;
  }
  .ba26_client_speciality__card .ba26_client_speciality__title br {
    display: none;
  }
}

.ba26_client_performance {
  padding-top: 100px;
  padding-bottom: 20px;
  overflow: hidden;
}
.ba26_client_performance .container {
  position: relative;
}
.ba26_client_performance .ba26_client_performance__bg {
  position: absolute;
  left: -40%;
  bottom: -200%;
  z-index: -1;
}
.ba26_client_performance .ba26_client_performance_info {
  margin-bottom: 30px;
}
.ba26_client_performance .ba26_client_performance_info__counter {
  font-weight: 600;
  font-size: 52px;
  line-height: 120%;
  color: var(--ba26-primary-500);
}
.ba26_client_performance .ba26_client_performance_info__text {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: var(--ba26-gray);
  margin-right: 80px;
  margin-bottom: 5px;
}
@media (max-width: 1191px) {
  .ba26_client_performance {
    padding-top: 80px;
  }
  .ba26_client_performance .ba26_client_performance_info__counter {
    font-size: 40px;
  }
  .ba26_client_performance .ba26_client_performance_info__text {
    font-size: 16px;
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .ba26_client_performance .ba26_client_performance_info__counter {
    font-size: 36px;
    margin-bottom: 5px;
  }
  .ba26_client_performance .ba26_client_performance_info__text {
    font-size: 15px;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .ba26_client_performance {
    padding-top: 60px;
  }
}

.ba26_client_approach {
  background-color: #F7F9FB;
  padding-top: 90px;
  padding-bottom: 130px;
}
.ba26_client_approach .ba26_client_heading {
  margin-bottom: 60px;
}
.ba26_client_approach .ba26_client_heading p {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}
.ba26_client_approach .ba26_client_approach_info {
  margin-bottom: 50px;
}
.ba26_client_approach .ba26_client_approach_info .ba26_client_approach_info__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: var(--ba26-primary);
  margin-bottom: 10px;
}
.ba26_client_approach .ba26_client_approach_info .ba26_client_approach_info__text {
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
}
.ba26_client_approach .ba26_client_approach_info .ba26_client_approach_info__icon {
  width: 50px;
  margin-bottom: 15px;
  transition: 0.3s ease;
}
.ba26_client_approach .ba26_client_approach_info:hover .ba26_client_approach_info__icon {
  transform: scale(1.1);
}
@media (max-width: 1380px) {
  .ba26_client_approach {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media (max-width: 1191px) {
  .ba26_client_approach .ba26_client_approach_info {
    margin-bottom: 40px;
  }
  .ba26_client_approach .ba26_client_approach_info .ba26_client_approach_info__title {
    font-size: 20px;
  }
  .ba26_client_approach .ba26_client_approach_info .ba26_client_approach_info__text {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .ba26_client_approach {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .ba26_client_approach {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ba26_client_approach .ba26_client_heading {
    margin-bottom: 40px;
  }
  .ba26_client_approach .ba26_client_approach_info .ba26_client_approach_info__text {
    font-size: 16px;
  }
}
@media (max-width: 591px) {
  .ba26_client_approach .ba26_client_approach_info .ba26_client_approach_info__title {
    font-size: 18px;
  }
}

.ba26_client_works {
  padding-top: 80px;
  padding-bottom: 45px;
}
@media (max-width: 767px) {
  .ba26_client_works {
    padding-top: 60px;
    padding-bottom: 25px;
  }
}

.ba26_client_works__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ba26_client_works__wrapper .ba26_client_works_info {
  width: 20%;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}
.ba26_client_works__wrapper .ba26_client_works_info .ba26_client_works_info__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: #FFFFFF;
  border: 1px solid #D2DBE5;
  border-radius: 70px;
  margin: 0 auto 18px;
  position: relative;
  transition: all 0.35s;
  z-index: 1;
}
.ba26_client_works__wrapper .ba26_client_works_info .ba26_client_works_info__icon::after {
  content: "";
  height: 100%;
  width: 100%;
  transform: scale(0);
  background-color: var(--ba26-primary);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.35s;
}
.ba26_client_works__wrapper .ba26_client_works_info .ba26_client_works_info__icon img {
  transition: all 0.35s;
}
.ba26_client_works__wrapper .ba26_client_works_info .ba26_client_works_info__title {
  font-weight: 600;
  margin-bottom: 6px;
  transition: all 0.35s;
  font-size: 20px;
}
.ba26_client_works__wrapper .ba26_client_works_info .ba26_client_works_info__number {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 30px;
  height: 30px;
  right: 3px;
  bottom: 3px;
  background: var(--ba26-secondary-25);
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: var(--ba26-gray-700);
  box-shadow: 0 0 0 2px #ffffff;
}
.ba26_client_works__wrapper .ba26_client_works_info:hover .ba26_client_works_info__icon img {
  filter: brightness(0) invert(1);
}
.ba26_client_works__wrapper .ba26_client_works_info:hover .ba26_client_works_info__icon::after {
  transform: scale(1);
}
.ba26_client_works__wrapper .ba26_client_works_info:hover .ba26_client_works_info__title {
  color: var(--ba26-primary-500);
}
@media (max-width: 1191px) {
  .ba26_client_works__wrapper .ba26_client_works_info {
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  .ba26_client_works__wrapper .ba26_client_works_info {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
    width: 50%;
  }
  .ba26_client_works__wrapper .ba26_client_works_info .ba26_client_works_info__icon {
    width: 100px;
    height: 100px;
    padding: 25px;
  }
  .ba26_client_works__wrapper .ba26_client_works_info .ba26_client_works_info__number {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
  .ba26_client_works__wrapper .ba26_client_works_info .ba26_client_works_info__title {
    font-size: 18px;
  }
}
@media (max-width: 591px) {
  .ba26_client_works__wrapper .ba26_client_works_info {
    width: 80%;
  }
}

.ba26_client_solution {
  position: relative;
  padding-top: 75px;
  padding-bottom: 55px;
}
.ba26_client_solution::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 160px;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #F7F9FB 0%, #FFFFFF 100%);
  z-index: -1;
}
.ba26_client_solution h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}
.ba26_client_solution .ba26_client_heading {
  margin-bottom: 25px;
}
.ba26_client_solution .ba26_client_solution__list-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
.ba26_client_solution .ba26_client_solution__list-wrapper .ba26_client_solution__list {
  padding-left: 8px;
  padding-right: 8px;
}
.ba26_client_solution .ba26_client_solution__list {
  padding: 0;
  margin: 0;
}
.ba26_client_solution .ba26_client_solution__list li {
  display: block;
  border-bottom: 1px solid #ACBCD0;
  font-size: 20px;
  padding: 12px 0 7px;
  line-height: 130%;
  letter-spacing: -0.01em;
}
.ba26_client_solution .ba26_client_solution__list-title {
  font-weight: 700;
  font-size: 20px;
}
.ba26_client_solution .ba26_client_solution__list--issue,
.ba26_client_solution .ba26_client_solution__list--impact {
  color: var(--ba26-secondary);
}
.ba26_client_solution .ba26_client_solution__list--issue li,
.ba26_client_solution .ba26_client_solution__list--impact li {
  font-size: 18px;
}
.ba26_client_solution .ba26_client_solution__list--approach {
  color: var(--ba26-primary-500);
}
.ba26_client_solution .ba26_client_solution__list--approach li {
  font-size: 18px;
}
.ba26_client_solution .ba26_client_solution__image {
  padding-left: 50px;
  padding-right: 50px;
  position: sticky;
  top: 100px;
}
.ba26_client_solution .ba26_client_solution__image img {
  border-radius: 16px;
}
.ba26_client_solution .ba26_client_solution__list--issue {
  width: 35%;
}
.ba26_client_solution .ba26_client_solution__list--impact {
  width: 25%;
}
.ba26_client_solution .ba26_client_solution__list--approach {
  width: 40%;
}
.ba26_client_solution .ba26_client_solution__row {
  color: var(--ba26-secondary);
  margin-bottom: 0;
  font-size: 17px;
}
.ba26_client_solution .ba26_client_solution__row .ba26_client_solution__row-title {
  font-size: 16px;
  margin-right: 5px;
  font-weight: 600;
  line-height: 130%;
}
.ba26_client_solution .ba26_client_solution__list-mobile {
  margin-bottom: 15px;
  display: none;
}
@media (max-width: 1191px) {
  .ba26_client_solution .ba26_client_solution__list li {
    font-size: 18px;
  }
  .ba26_client_solution .ba26_client_solution__image {
    padding-left: 0px;
    padding-right: 0;
  }
  .ba26_client_solution .ba26_client_solution__list--issue,
  .ba26_client_solution .ba26_client_solution__list--impact {
    width: 50%;
  }
  .ba26_client_solution .ba26_client_solution__list--approach {
    width: 100%;
  }
  .ba26_client_solution .ba26_client_solution__list {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .ba26_client_solution {
    padding-top: 60px;
    padding-bottom: 50px;
  }
  .ba26_client_solution .ba26_client_solution__image {
    position: static;
    margin-top: 20px;
  }
  .ba26_client_solution .ba26_client_solution__list li {
    font-size: 16px;
  }
  .ba26_client_solution h3 {
    font-size: 18px;
  }
}
@media (max-width: 591px) {
  .ba26_client_solution .ba26_client_solution__list--issue,
  .ba26_client_solution .ba26_client_solution__list--impact {
    width: 100%;
  }
  .ba26_client_solution .ba26_client_solution__list-mobile {
    display: block;
  }
  .ba26_client_solution .ba26_client_solution__list-wrapper {
    display: none;
  }
}

.ba26_client_staffing {
  position: relative;
  overflow: hidden;
  padding-top: 50px;
}
.ba26_client_staffing .ba26_client_staffing__note {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
.ba26_client_staffing .ba26_client_heading {
  margin-bottom: 10px;
}
.ba26_client_staffing .ba26_client_heading .ba26_client_heading__title {
  margin-bottom: 15px;
}
.ba26_client_staffing .ba26_client_heading p {
  margin-bottom: 0;
}
.ba26_client_staffing .ba26_client_staffing__content {
  margin-bottom: 50px;
  padding-left: 20px;
}
.ba26_client_staffing .container {
  position: relative;
}
.ba26_client_staffing .ba26_client_staffing__bg {
  position: absolute;
  left: -25%;
  bottom: -100%;
  z-index: -1;
}
.ba26_client_staffing [class*=ba26_client_staffing__icon] {
  position: absolute;
}
.ba26_client_staffing .ba26_client_staffing__image-wrapper {
  position: relative;
  padding-left: 90px;
  padding-right: 30px;
}
.ba26_client_staffing .ba26_client_staffing__icon1 {
  left: 0;
  top: 45%;
  animation: clientStaffing1 5s ease-in-out infinite;
}
.ba26_client_staffing .ba26_client_staffing__icon2 {
  left: 10%;
  top: 60%;
  animation: clientStaffing2 5s ease-in-out infinite;
}
.ba26_client_staffing .ba26_client_staffing__icon3 {
  top: 10%;
  right: 10%;
  animation: clientStaffing1 4s ease-in-out infinite;
}
.ba26_client_staffing .ba26_client_staffing__icon4 {
  top: 25%;
  right: 15%;
  animation: clientStaffing2 4s ease-in-out infinite;
}
@media (max-width: 1191px) {
  .ba26_client_staffing .ba26_client_staffing__content {
    margin-bottom: 50px;
    padding-left: 0;
  }
  .ba26_client_staffing .ba26_client_staffing__note {
    font-size: 18px;
  }
  .ba26_client_staffing .ba26_client_staffing__image-wrapper {
    padding-left: 0;
    padding-right: 0;
    margin-left: -15px;
    margin-right: -15px;
  }
  .ba26_client_staffing .ba26_client_staffing__icon1 {
    left: -23px;
    top: 52%;
    width: 60px;
  }
  .ba26_client_staffing .ba26_client_staffing__icon2 {
    left: -4%;
    top: 65%;
    width: 80px;
  }
  .ba26_client_staffing .ba26_client_staffing__icon3 {
    top: 18%;
    width: 60px;
  }
  .ba26_client_staffing .ba26_client_staffing__icon4 {
    top: 30%;
    right: 16%;
    width: 80px;
  }
}
@media (max-width: 991px) {
  .ba26_client_staffing .row {
    flex-direction: column-reverse;
  }
  .ba26_client_staffing .ba26_client_staffing__image-wrapper {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .ba26_client_staffing .ba26_client_staffing__bg {
    left: 0;
    bottom: -10%;
  }
  .ba26_client_staffing .ba26_client_staffing__icon1 {
    left: -12%;
    top: 50%;
  }
  .ba26_client_staffing .ba26_client_staffing__icon2 {
    left: -10%;
    top: 62%;
  }
  .ba26_client_staffing .ba26_client_staffing__icon3 {
    top: 19%;
    right: 10%;
  }
  .ba26_client_staffing .ba26_client_staffing__icon4 {
    top: 30%;
    right: 15%;
  }
}
@media (max-width: 591px) {
  .ba26_client_staffing .ba26_client_staffing__image-wrapper {
    width: 300px;
  }
  .ba26_client_staffing .ba26_client_staffing__bg {
    left: -70%;
    bottom: -30%;
    min-width: 200%;
  }
  .ba26_client_staffing .ba26_client_staffing__icon1 {
    left: -5%;
    width: 45px;
  }
  .ba26_client_staffing .ba26_client_staffing__icon2 {
    width: 60px;
    left: -3%;
  }
  .ba26_client_staffing .ba26_client_staffing__icon3 {
    top: 18%;
    width: 50px;
  }
  .ba26_client_staffing .ba26_client_staffing__icon4 {
    width: 70px;
  }
  .ba26_client_staffing .ba26_client_staffing__note {
    font-size: 16px;
  }
}

.ba26_client_staffing__list {
  margin: 0;
  padding: 0 0 20px;
}
.ba26_client_staffing__list li {
  display: block;
  font-size: 20px;
  padding: 4px 0 4px 30px;
  position: relative;
  letter-spacing: -0.01em;
}
.ba26_client_staffing__list li::before {
  content: "";
  background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.5552 6.48437L6.52393 13.5156" stroke="black" stroke-miterlimit="10"/><path d="M6.52393 6.48437L13.5552 13.5156" stroke="black" stroke-miterlimit="10"/><mask id="mask0_657_6128" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="20" height="20"><path d="M0 0H20V20H0V0Z" fill="white"/></mask><g mask="url(%23mask0_657_6128)"><path d="M17.6516 19.2188H2.33911C1.47618 19.2188 0.776611 18.5192 0.776611 17.6562V2.34375C0.776611 1.48082 1.47618 0.781248 2.33911 0.781248H17.6516C18.5146 0.781248 19.2141 1.48082 19.2141 2.34375V17.6562C19.2141 18.5192 18.5146 19.2188 17.6516 19.2188Z" stroke="black" stroke-miterlimit="10"/></g></svg>');
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 11px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (max-width: 1191px) {
  .ba26_client_staffing__list li {
    font-size: 18px;
    padding: 3px 0 3px 26px;
  }
  .ba26_client_staffing__list li::before {
    width: 16px;
    height: 16px;
    top: 8px;
  }
}
@media (max-width: 767px) {
  .ba26_client_staffing__list li {
    font-size: 16px;
    padding: 3px 0 3px 24px;
  }
  .ba26_client_staffing__list li::before {
    width: 14px;
    height: 14px;
    top: 7px;
  }
  .ba26_client_staffing__list li .ba26_client_staffing__note {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .ba26_client_staffing__list {
    padding: 0 0 15px;
  }
}

@keyframes clientStaffing1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes clientStaffing2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.ba26_about_hero {
  position: relative;
  overflow: hidden;
}
.ba26_about_hero .ba26_about_hero__img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}
.ba26_about_hero .ba26_about_hero__inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
.ba26_about_hero .ba26_about_hero__title {
  font-weight: 600;
  font-size: 52px;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #fff;
}
.ba26_about_hero p {
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: var(--ba26-gray);
  max-width: 660px;
  color: #D2DBE5;
}
.ba26_about_hero .ba26_about_hero__img-mobile {
  display: none;
}
.ba26_about_hero .ba26_about_hero-mobile {
  display: none;
}
.ba26_about_hero .ba26_about_hero__text-img {
  transform: translateX(50px);
}
@media (max-width: 1380px) {
  .ba26_about_hero .ba26_about_hero__title {
    font-size: 42px;
  }
  .ba26_about_hero p {
    font-size: 20px;
  }
  .ba26_about_hero .ba26_about_hero__img {
    min-height: 460px;
  }
  .ba26_about_hero .ba26_about_hero__text-img {
    width: 90%;
  }
}
@media (max-width: 1191px) {
  .ba26_about_hero .ba26_about_hero__title {
    font-size: 34px;
    margin-bottom: 12px;
  }
  .ba26_about_hero p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .ba26_about_hero {
    height: auto;
  }
  .ba26_about_hero .ba26_about_hero__title {
    font-size: 28px;
  }
  .ba26_about_hero .ba26_about_hero__title br {
    display: none;
  }
  .ba26_about_hero p {
    font-size: 16px;
  }
  .ba26_about_hero .ba26_about_hero__img {
    min-height: 350px;
    object-fit: cover;
    object-position: 75%;
  }
  .ba26_about_hero .ba26_about_hero__inner {
    top: 50%;
  }
  .ba26_about_hero .ba26_about_hero__text-img {
    transform: translateX(20px);
  }
}
@media (max-width: 767px) {
  .ba26_about_hero {
    height: auto;
  }
  .ba26_about_hero .ba26_about_hero__img {
    display: none;
  }
  .ba26_about_hero .ba26_about_hero-mobile {
    display: block;
  }
  .ba26_about_hero .ba26_about_hero-mobile {
    position: relative;
  }
  .ba26_about_hero .ba26_about_hero-mobile .ba26_about_hero__img-mobile {
    display: block;
  }
  .ba26_about_hero .ba26_about_hero__title br {
    display: block;
  }
  .ba26_about_hero p {
    margin-right: 0;
    max-width: 440px;
  }
  .ba26_about_hero .ba26_about_hero__inner {
    padding-top: 40px;
    position: relative;
    transform: unset;
    top: unset;
  }
  .ba26_about_hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #032144;
    height: 60%;
    width: 100%;
    z-index: -1;
  }
  .ba26_about_hero .ba26_about_hero__text-img {
    display: none;
  }
}
@media (max-width: 575px) {
  .ba26_about_hero .ba26_about_hero__title br {
    display: none;
  }
}

.ba26_about {
  padding-top: 75px;
  padding-bottom: 75px;
}
@media (max-width: 767px) {
  .ba26_about {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.ba26_about .ba26_about-inner {
  background: linear-gradient(180deg, #ECEEFA 40.38%, #BECFED 100%);
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 70px 60px 130px 60px;
}
@media (max-width: 1380px) {
  .ba26_about .ba26_about-inner {
    padding: 50px 50px 90px 60px;
  }
}
@media (max-width: 1199px) {
  .ba26_about .ba26_about-inner {
    padding: 50px 50px 150px 60px;
  }
}
@media (max-width: 991px) {
  .ba26_about .ba26_about-inner {
    padding: 40px 40px 0 40px;
  }
}
@media (max-width: 575px) {
  .ba26_about .ba26_about-inner {
    padding: 25px 25px 0 25px;
  }
}
.ba26_about .ba26_about_content {
  padding-right: 40px;
}
@media (max-width: 991px) {
  .ba26_about .ba26_about_content {
    padding-right: 0;
  }
}
.ba26_about .ba26_about_content .ba26_about_heading__title {
  color: #00A5A2;
  margin-bottom: 16px;
  font-size: 40px;
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 120%;
}
@media (max-width: 1380px) {
  .ba26_about .ba26_about_content .ba26_about_heading__title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .ba26_about .ba26_about_content .ba26_about_heading__title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .ba26_about .ba26_about_content .ba26_about_heading__title {
    font-size: 24px;
  }
}
.ba26_about .ba26_about_content p {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #41454D;
}
@media (max-width: 1380px) {
  .ba26_about .ba26_about_content p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .ba26_about .ba26_about_content p {
    font-size: 16px;
  }
}
.ba26_about .ba26_about-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
}
@media (max-width: 991px) {
  .ba26_about .ba26_about-img {
    position: relative;
    width: calc(100% + 80px);
    margin-right: -40px;
    margin-left: -40px;
    max-width: unset;
  }
}
@media (max-width: 575px) {
  .ba26_about .ba26_about-img {
    width: calc(100% + 50px);
    margin-right: -25px;
    margin-left: -25px;
  }
}

.ba26_about_purpose {
  background: #042C5A;
  padding-top: 110px;
  padding-bottom: 110px;
  height: 680px;
}
@media (max-width: 1380px) {
  .ba26_about_purpose {
    height: 650px;
  }
}
@media (max-width: 991px) {
  .ba26_about_purpose {
    height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (max-width: 991px) {
  .ba26_about_purpose {
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.ba26_about_purpose .ba26_about_purpose-accordion {
  padding-left: 65px;
  padding-right: 65px;
  height: 450px;
}
@media (max-width: 1370px) {
  .ba26_about_purpose .ba26_about_purpose-accordion {
    padding-left: 0px;
    padding-right: 0px;
    height: 390px;
  }
}
@media (max-width: 991px) {
  .ba26_about_purpose .ba26_about_purpose-accordion {
    height: 320px;
  }
}
@media (max-width: 767px) {
  .ba26_about_purpose .ba26_about_purpose-accordion {
    height: 300px;
  }
}
.ba26_about_purpose .ba26_about_purpose-accordion-card {
  border: 1px solid #214D81;
  border-radius: 14px;
  margin-bottom: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.2s;
  padding: 30px 35px;
}
@media (max-width: 991px) {
  .ba26_about_purpose .ba26_about_purpose-accordion-card {
    padding: 15px 20px;
  }
}
.ba26_about_purpose .ba26_about_purpose-accordion-card .ba26_about_purpose_accordion-header {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.02em;
  padding-bottom: 4px;
}
@media (max-width: 1380px) {
  .ba26_about_purpose .ba26_about_purpose-accordion-card .ba26_about_purpose_accordion-header {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .ba26_about_purpose .ba26_about_purpose-accordion-card .ba26_about_purpose_accordion-header {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .ba26_about_purpose .ba26_about_purpose-accordion-card .ba26_about_purpose_accordion-header {
    font-size: 20px;
  }
}
.ba26_about_purpose .ba26_about_purpose-accordion-card .ba26_about_purpose_accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.2s;
  color: #90A6C0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
@media (max-width: 1380px) {
  .ba26_about_purpose .ba26_about_purpose-accordion-card .ba26_about_purpose_accordion-content {
    font-size: 18px;
  }
}
.ba26_about_purpose .ba26_about_purpose-accordion-card.ba26_about_purpose-active {
  background: #053771;
  border: 1px solid #053771;
}
.ba26_about_purpose .ba26_about_purpose-accordion-card.ba26_about_purpose-active .ba26_about_purpose_accordion-content {
  max-height: 200px;
}
.ba26_about_purpose .ba26_about_purpose-media {
  text-align: center;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}
.ba26_about_purpose .ba26_about_purpose-media img {
  width: 100%;
  max-width: 430px;
  transition: 0.2s;
}
@media (max-width: 1370px) {
  .ba26_about_purpose .ba26_about_purpose-media img {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 80%;
  }
}
@media (max-width: 991px) {
  .ba26_about_purpose .ba26_about_purpose-media img {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .ba26_about_purpose .ba26_about_purpose-media img {
    max-width: 65%;
    margin-top: 30px;
  }
}

.ba26_about_believe {
  padding-top: 100px;
  padding-bottom: 70px;
  background: #fff;
}
@media (max-width: 991px) {
  .ba26_about_believe {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .ba26_about_believe {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
.ba26_about_believe .ba26_about_heading {
  margin-bottom: 45px;
}
.ba26_about_believe .ba26_about_heading .ba26_about_heading__title {
  text-align: center;
  font-size: 52px;
  font-weight: 600;
}
@media (max-width: 1280px) {
  .ba26_about_believe .ba26_about_heading .ba26_about_heading__title {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .ba26_about_believe .ba26_about_heading .ba26_about_heading__title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .ba26_about_believe .ba26_about_heading .ba26_about_heading__title {
    font-size: 28px;
  }
}
@media (max-width: 1280px) {
  .ba26_about_believe .ba26_about_heading {
    margin-bottom: 32px;
  }
}
@media (min-width: 1200px) {
  .ba26_about_believe .ba26_about_believe-row [class*=col] {
    width: 20%;
  }
}

.ba26_about_believe__card {
  text-align: center;
  margin-bottom: 35px;
  display: block;
}
.ba26_about_believe__card .ba26_about_believe__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: #053771;
}
.ba26_about_believe__card .ba26_about_believe__content {
  font-size: 18px;
  line-height: 140%;
  color: #35383F;
}
@media (max-width: 767px) {
  .ba26_about_believe__card .ba26_about_believe__content {
    font-size: 16px;
  }
}
.ba26_about_believe__card .ba26_about_believe__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  min-width: 120px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  transition: 0.3s ease;
}
.ba26_about_believe__card:hover .ba26_about_believe__icon {
  transform: scale(1.1);
}
@media (max-width: 1280px) {
  .ba26_about_believe__card .ba26_about_believe__title {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .ba26_about_believe__card {
    margin-bottom: 30px;
  }
  .ba26_about_believe__card .ba26_about_believe__icon {
    width: 100px;
    min-width: 100px;
    height: 100px;
  }
}
@media (max-width: 591px) {
  .ba26_about_believe__card .ba26_about_believe__icon {
    width: 80px;
    min-width: 80px;
    height: 80px;
  }
  .ba26_about_believe__card .ba26_about_believe__title {
    font-size: 16px;
  }
}

.ba26_about_we_work {
  padding-top: 100px;
  padding-bottom: 70px;
  background: #F7F9FB;
}
@media (max-width: 991px) {
  .ba26_about_we_work {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .ba26_about_we_work {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
.ba26_about_we_work .ba26_about_heading {
  margin-bottom: 45px;
}
.ba26_about_we_work .ba26_about_heading .ba26_about_heading__title {
  text-align: center;
  font-size: 52px;
  font-weight: 600;
}
@media (max-width: 1280px) {
  .ba26_about_we_work .ba26_about_heading .ba26_about_heading__title {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .ba26_about_we_work .ba26_about_heading .ba26_about_heading__title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .ba26_about_we_work .ba26_about_heading .ba26_about_heading__title {
    font-size: 28px;
  }
}
@media (max-width: 1280px) {
  .ba26_about_we_work .ba26_about_heading {
    margin-bottom: 32px;
  }
}
@media (min-width: 1200px) {
  .ba26_about_we_work .ba26_about_we_work-row [class*=col] {
    width: 20%;
  }
}

.ba26_about_we_work__card {
  text-align: center;
  margin-bottom: 35px;
  display: block;
}
.ba26_about_we_work__card .ba26_about_we_work__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: #053771;
}
.ba26_about_we_work__card .ba26_about_we_work__content {
  font-size: 18px;
  line-height: 140%;
  color: #35383F;
}
@media (max-width: 767px) {
  .ba26_about_we_work__card .ba26_about_we_work__content {
    font-size: 16px;
  }
}
.ba26_about_we_work__card .ba26_about_we_work__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  min-width: 120px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  transition: 0.3s ease;
}
.ba26_about_we_work__card:hover .ba26_about_we_work__icon {
  transform: scale(1.1);
}
@media (max-width: 1280px) {
  .ba26_about_we_work__card .ba26_about_we_work__title {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .ba26_about_we_work__card {
    margin-bottom: 30px;
  }
  .ba26_about_we_work__card .ba26_about_we_work__icon {
    width: 100px;
    min-width: 100px;
    height: 100px;
  }
}
@media (max-width: 591px) {
  .ba26_about_we_work__card .ba26_about_we_work__icon {
    width: 80px;
    min-width: 80px;
    height: 80px;
  }
  .ba26_about_we_work__card .ba26_about_we_work__title {
    font-size: 16px;
  }
}

.ba26_about_advantage {
  padding-top: 100px;
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .ba26_about_advantage {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .ba26_about_advantage {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
.ba26_about_advantage .ba26_about_advantage_heading {
  margin-right: 100px;
  position: sticky;
  top: 100px;
}
.ba26_about_advantage .ba26_about_advantage_heading p {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .ba26_about_advantage .ba26_about_advantage_heading {
    position: static;
    margin-bottom: 40px;
  }
  .ba26_about_advantage .ba26_about_advantage_heading p {
    margin-bottom: 16px;
  }
}
@media (max-width: 591px) {
  .ba26_about_advantage .ba26_about_advantage_heading {
    margin-right: 0;
  }
}
.ba26_about_advantage .ba26_about_advantage_heading__title {
  font-size: 40px;
  color: #042C5A;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
@media (max-width: 1380px) {
  .ba26_about_advantage .ba26_about_advantage_heading__title {
    font-size: 36px;
  }
}
@media (max-width: 1191px) {
  .ba26_about_advantage .ba26_about_advantage_heading__title {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .ba26_about_advantage .ba26_about_advantage_heading__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .ba26_about_advantage .ba26_about_advantage_heading__title {
    font-size: 24px;
  }
}

.ba26_about_advantage_card {
  display: flex;
  align-items: center;
  padding: 25px;
  background: #F0F4F7;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: all 0.3s;
}
.ba26_about_advantage_card p {
  transition: all 0.3s;
}
.ba26_about_advantage_card p:last-child {
  margin-bottom: 0;
}
.ba26_about_advantage_card .ba26_about_advantage_card__title {
  margin-bottom: 4px;
  font-size: 24px;
  letter-spacing: -0.02em;
  font-weight: 600;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .ba26_about_advantage_card .ba26_about_advantage_card__title {
    font-size: 20px;
  }
}
.ba26_about_advantage_card:hover {
  background: #053771;
}
.ba26_about_advantage_card:hover .ba26_about_advantage_card__title {
  color: #fff;
}
.ba26_about_advantage_card:hover p {
  color: #fff;
}

.ba26_about_location {
  padding-top: 50px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .ba26_about_location {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .ba26_about_location {
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
.ba26_about_location .ba26_about_location_heading {
  margin-bottom: 32px;
}
.ba26_about_location .ba26_about_location_heading .ba26_about_location_heading__title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
}
@media (max-width: 1280px) {
  .ba26_about_location .ba26_about_location_heading .ba26_about_location_heading__title {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .ba26_about_location .ba26_about_location_heading .ba26_about_location_heading__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .ba26_about_location .ba26_about_location_heading .ba26_about_location_heading__title {
    font-size: 24px;
  }
}
@media (max-width: 1280px) {
  .ba26_about_location .ba26_about_location_heading {
    margin-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .ba26_about_location .ba26_about_location_heading {
    margin-bottom: 18px;
  }
}

.ba26_about_leadership {
  padding-top: 130px;
  padding-bottom: 50px;
  overflow: hidden;
  position: relative;
}
.ba26_about_leadership .ba26_about_leadership-bg {
  width: 900px;
  position: absolute;
  top: -50%;
  left: 60%;
  z-index: -1;
}
@media (max-width: 575px) {
  .ba26_about_leadership .ba26_about_leadership-bg {
    width: 700px;
    top: -30%;
    left: 50%;
  }
}
@media (max-width: 991px) {
  .ba26_about_leadership {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .ba26_about_leadership {
    padding-top: 50px;
    padding-bottom: 10px;
  }
}
.ba26_about_leadership .ba26_about_leadership_heading {
  margin-bottom: 52px;
  max-width: 700px;
}
.ba26_about_leadership .ba26_about_leadership_heading .ba26_about_leadership_heading__title {
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: 600;
}
@media (max-width: 1280px) {
  .ba26_about_leadership .ba26_about_leadership_heading .ba26_about_leadership_heading__title {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .ba26_about_leadership .ba26_about_leadership_heading .ba26_about_leadership_heading__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .ba26_about_leadership .ba26_about_leadership_heading .ba26_about_leadership_heading__title {
    font-size: 24px;
  }
}
.ba26_about_leadership .ba26_about_leadership_heading p {
  font-size: 20px;
}
@media (max-width: 1280px) {
  .ba26_about_leadership .ba26_about_leadership_heading p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .ba26_about_leadership .ba26_about_leadership_heading p {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  .ba26_about_leadership .ba26_about_leadership_heading {
    margin-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .ba26_about_leadership .ba26_about_leadership_heading {
    margin-bottom: 18px;
  }
}

.about_leadership_swiper {
  overflow: unset;
}
.about_leadership_swiper:after {
  position: absolute;
  width: 3000px;
  content: "";
  height: 100%;
  background: #fff;
  right: 100%;
  top: 0;
  z-index: 1;
}
.about_leadership_swiper .about_leadership-navigation {
  display: flex;
  gap: 10px;
  justify-content: end;
  margin-top: 28px;
}
.about_leadership_swiper .about_leadership-navigation .about_leadership-prev,
.about_leadership_swiper .about_leadership-navigation .about_leadership-next {
  width: 55px;
  height: 55px;
  border-radius: 30px;
  background: linear-gradient(180deg, #6882A6 0%, #042C5A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
}
.about_leadership_swiper .about_leadership-navigation .about_leadership-prev[aria-disabled=true],
.about_leadership_swiper .about_leadership-navigation .about_leadership-next[aria-disabled=true] {
  opacity: 0.2;
}
@media (max-width: 991px) {
  .about_leadership_swiper .about_leadership-navigation .about_leadership-prev,
  .about_leadership_swiper .about_leadership-navigation .about_leadership-next {
    width: 44px;
    height: 44px;
  }
  .about_leadership_swiper .about_leadership-navigation .about_leadership-prev svg,
  .about_leadership_swiper .about_leadership-navigation .about_leadership-next svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 575px) {
  .about_leadership_swiper .about_leadership-navigation .about_leadership-prev,
  .about_leadership_swiper .about_leadership-navigation .about_leadership-next {
    width: 36px;
    height: 36px;
  }
  .about_leadership_swiper .about_leadership-navigation .about_leadership-prev svg,
  .about_leadership_swiper .about_leadership-navigation .about_leadership-next svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 575px) {
  .about_leadership_swiper .about_leadership-navigation {
    margin-top: 18px;
  }
}

.about_leadership-card {
  overflow: hidden;
  border-radius: 0 0 12px 0;
}
.about_leadership-card .about_leadership-info {
  padding: 16px 36px;
}
@media (max-width: 1280px) {
  .about_leadership-card .about_leadership-info {
    padding: 12px 24px;
  }
}
@media (max-width: 575px) {
  .about_leadership-card .about_leadership-info {
    padding: 12px 18px;
    position: absolute;
    bottom: 0;
    z-index: 1;
  }
}
.about_leadership-card .about_leadership-info .about_leadership-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #00A5A2;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .about_leadership-card .about_leadership-info .about_leadership-name {
    font-size: 15px;
    color: #fff;
  }
}
.about_leadership-card .about_leadership-info .about_leadership-position {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #042C5A;
}
@media (max-width: 575px) {
  .about_leadership-card .about_leadership-info .about_leadership-position {
    font-size: 13px;
    color: #fff;
  }
}
.about_leadership-card .about_leadership-content {
  position: relative;
  height: 195px;
  background: linear-gradient(180deg, #00A5A2 0%, #042245 100%);
  border-radius: 12px;
}
@media (max-width: 575px) {
  .about_leadership-card .about_leadership-content {
    height: 290px;
  }
}
.about_leadership-card .about_leadership-content p {
  padding: 28px 36px;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 0;
  width: 70%;
}
@media (max-width: 1370px) {
  .about_leadership-card .about_leadership-content p {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .about_leadership-card .about_leadership-content p {
    padding: 20px 24px;
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .about_leadership-card .about_leadership-content p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .about_leadership-card .about_leadership-content p {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .about_leadership-card .about_leadership-content p {
    font-size: 16px;
    width: 100%;
    padding: 18px;
  }
}
.about_leadership-card .about_leadership-content img {
  position: absolute;
  right: 0;
  width: 40%;
  bottom: 0;
  border-radius: 0 0 12px 0;
}
@media (max-width: 1200px) {
  .about_leadership-card .about_leadership-content img {
    right: -10%;
    width: 45%;
    border-radius: 0 0 12px 0;
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .about_leadership-card .about_leadership-content img {
    right: 0;
    width: 35%;
  }
}
@media (max-width: 575px) {
  .about_leadership-card .about_leadership-content img {
    width: 120px;
  }
}

.ba26_salary_guide_heading {
  margin-bottom: 40px;
}
.ba26_salary_guide_heading .ba26_salary_guide_heading__title {
  font-size: 40px;
  color: #042C5A;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ba26_salary_guide_heading.ba26_salary_guide_heading--center {
  text-align: center;
}
.ba26_salary_guide_heading p {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
}
.ba26_salary_guide_heading .ba26_salary_guide_heading__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  display: block;
  color: var(--ba26-gray);
}
@media (max-width: 1380px) {
  .ba26_salary_guide_heading .ba26_salary_guide_heading__title {
    font-size: 36px;
  }
}
@media (max-width: 1191px) {
  .ba26_salary_guide_heading .ba26_salary_guide_heading__title {
    font-size: 32px;
  }
  .ba26_salary_guide_heading p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .ba26_salary_guide_heading .ba26_salary_guide_heading__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .ba26_salary_guide_heading {
    margin-bottom: 30px;
  }
  .ba26_salary_guide_heading .ba26_salary_guide_heading__title {
    font-size: 24px;
  }
  .ba26_salary_guide_heading p {
    font-size: 16px;
  }
}

.ba26_salary_guide_hero {
  position: relative;
  overflow: hidden;
  padding-top: 30px;
}
.ba26_salary_guide_hero .ba26_salary_guide_hero__img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}
.ba26_salary_guide_hero .ba26_salary_guide_hero__inner {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}
.ba26_salary_guide_hero .ba26_salary_guide_hero__inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(95.67deg, #009996 1.9%, #032144 99.4%);
  z-index: -1;
}
.ba26_salary_guide_hero .ba26_salary_guide_hero__content {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
  padding: 30px 60px;
}
.ba26_salary_guide_hero .ba26_salary_guide_hero__subtitle {
  font-weight: 600;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  display: block;
}
.ba26_salary_guide_hero .ba26_salary_guide_hero__title {
  font-weight: 600;
  font-size: 52px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
}
.ba26_salary_guide_hero p {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  max-width: 560px;
  color: #fff;
}
.ba26_salary_guide_hero .ba26_salary_guide_hero__img-mobile {
  display: none;
}
@media (max-width: 1191px) {
  .ba26_salary_guide_hero .ba26_salary_guide_hero__title {
    font-size: 42px;
  }
  .ba26_salary_guide_hero p {
    font-size: 18px;
  }
  .ba26_salary_guide_hero .ba26_salary_guide_hero__subtitle {
    font-size: 24px;
  }
  .ba26_salary_guide_hero .ba26_salary_guide_hero__img {
    height: 300px;
  }
  .ba26_salary_guide_hero .ba26_salary_guide_hero__content {
    padding: 30px 40px;
  }
}
@media (max-width: 991px) {
  .ba26_salary_guide_hero {
    padding-top: 20px;
  }
  .ba26_salary_guide_hero .ba26_salary_guide_hero__title {
    font-size: 30px;
  }
  .ba26_salary_guide_hero p {
    font-size: 16px;
  }
  .ba26_salary_guide_hero .ba26_salary_guide_hero__subtitle {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .ba26_salary_guide_hero .ba26_salary_guide_hero__img {
    height: 260px;
  }
  .ba26_salary_guide_hero .ba26_salary_guide_hero__content {
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  .ba26_salary_guide_hero .ba26_salary_guide_hero__img-mobile {
    display: block;
  }
  .ba26_salary_guide_hero .ba26_salary_guide_hero__img {
    display: none;
  }
  .ba26_salary_guide_hero .ba26_salary_guide_hero__content {
    padding: 40px;
    transform: unset;
    top: 0;
  }
  .ba26_salary_guide_hero .ba26_salary_guide_hero__inner {
    border-radius: 8px;
  }
}
@media (max-width: 575px) {
  .ba26_salary_guide_hero .ba26_salary_guide_hero__content {
    padding: 25px;
  }
  .ba26_salary_guide_hero .ba26_salary_guide_hero__title {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .ba26_salary_guide_hero .ba26_salary_guide_hero__subtitle {
    font-size: 16px;
  }
  .ba26_salary_guide_hero .ba26_salary_guide_hero__img-mobile {
    height: 460px;
    object-fit: cover;
    width: 100%;
  }
}

.ba26_salary_guide_job {
  padding-top: 110px;
  padding-bottom: 110px;
  background-color: var(--ba26-secondary-5);
}
.ba26_salary_guide_job .ba26_salary_guide_job__btns {
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.ba26_salary_guide_job .ba26_salary_guide_job__btns .btn {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 591px) {
  .ba26_salary_guide_job .ba26_salary_guide_job__btns {
    gap: 10px;
  }
  .ba26_salary_guide_job .ba26_salary_guide_job__btns .btn {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 1191px) {
  .ba26_salary_guide_job {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 591px) {
  .ba26_salary_guide_job {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.ba26_salary_guide_job__card {
  padding: 25px;
  background: #FFFFFF;
  border-radius: 8px;
  height: calc(100% - 20px);
  margin-bottom: 20px;
}
.ba26_salary_guide_job__card .ba26_salary_guide_job__card-num {
  padding: 10px;
  width: 60px;
  height: 60px;
  color: var(--ba26-primary);
  background: var(--ba26-primary-25);
  border-radius: 60px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  margin-bottom: 25px;
}
.ba26_salary_guide_job__card .ba26_salary_guide_job__card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.ba26_salary_guide_job__card p {
  margin-bottom: 12px;
}
.ba26_salary_guide_job__card p:last-child {
  margin-bottom: 0;
}
.ba26_salary_guide_job__card p a,
.ba26_salary_guide_job__card p span {
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 1380px) {
  .ba26_salary_guide_job__card .ba26_salary_guide_job__card-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .ba26_salary_guide_job__card {
    padding: 20px;
  }
  .ba26_salary_guide_job__card .ba26_salary_guide_job__card-num {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 18px;
  }
}

.ba26_salary_guide_content {
  padding-top: 70px;
  padding-bottom: 40px;
}
.ba26_salary_guide_content .btn {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 591px) {
  .ba26_salary_guide_content {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .ba26_salary_guide_content .btn {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.ba26_salary_guide_content_left {
  padding-right: 50px;
}
.ba26_salary_guide_content_left h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: var(--ba26-primary-500);
  margin-bottom: 8px;
}
.ba26_salary_guide_content_left h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: var(--ba26-secondary);
  margin-bottom: 10px;
}
.ba26_salary_guide_content_left p {
  margin-bottom: 12px;
}
.ba26_salary_guide_content_left p a {
  text-underline-offset: 2px;
  text-decoration: underline;
  color: var(--ba26-secondary);
}
.ba26_salary_guide_content_left ul {
  padding: 0 0 0 30px;
  margin: 0 0 15px 0;
}
.ba26_salary_guide_content_left ul li::marker {
  font-size: 14px;
}
.ba26_salary_guide_content_left ul li strong {
  font-weight: 600;
}
@media (max-width: 1191px) {
  .ba26_salary_guide_content_left {
    padding-right: 0;
  }
  .ba26_salary_guide_content_left h2 {
    font-size: 26px;
  }
  .ba26_salary_guide_content_left h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .ba26_salary_guide_content_left h2 {
    font-size: 22px;
  }
  .ba26_salary_guide_content_left h3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .ba26_salary_guide_content_left h2 {
    font-size: 20px;
  }
  .ba26_salary_guide_content_left h3 {
    font-size: 16px;
  }
}

.ba26_salary_guide_content_aside {
  margin-bottom: 30px;
}

.ba26_salary_guide_content_aside_col {
  display: flex;
}
@media (max-width: 991px) {
  .ba26_salary_guide_content_aside_col {
    display: none;
  }
}
.ba26_salary_guide_content_aside_col .ba26_salary_guide_content_aside {
  position: sticky;
  bottom: 30px;
  margin-bottom: 50px;
  align-self: flex-end;
}

.ba26_salary_guide_content_aside__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: var(--ba26-secondary);
  margin-bottom: 15px;
}

.ba26_salary_guide_content_aside__link {
  margin: 0;
  padding: 0;
}
.ba26_salary_guide_content_aside__link li {
  display: block;
  font-size: 16px;
  padding: 7px 0;
  border-bottom: 1px solid var(--ba26-secondary-50);
}
.ba26_salary_guide_content_aside__link li a {
  color: inherit;
  display: block;
  line-height: 130%;
}
.ba26_salary_guide_content_aside__link li a:hover {
  color: var(--ba26-primary);
}

.ba26_salary_guide_content_insight {
  border-radius: 12px;
  background-color: var(--ba26-primary-25);
  display: flex;
  position: relative;
  margin-top: 20px;
}
.ba26_salary_guide_content_insight .ba26_salary_guide_content_insight__icon {
  width: 90px;
  min-width: 90px;
  background-color: var(--ba26-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 12px 0 0 12px;
}
.ba26_salary_guide_content_insight .ba26_salary_guide_content_insight__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 135%;
  letter-spacing: -0.01em;
  color: var(--ba26-primary);
  margin-bottom: 5px;
}
.ba26_salary_guide_content_insight .ba26_salary_guide_content_insight__content {
  width: 100%;
  padding: 20px 25px;
}
.ba26_salary_guide_content_insight .ba26_salary_guide_content_insight__content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .ba26_salary_guide_content_insight .ba26_salary_guide_content_insight__content {
    width: 100%;
    padding: 15px 20px;
  }
}
@media (max-width: 591px) {
  .ba26_salary_guide_content_insight {
    flex-direction: column;
    border-radius: 8px;
    margin-top: 50px;
  }
  .ba26_salary_guide_content_insight .ba26_salary_guide_content_insight__icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    padding: 14px;
    border-radius: 8px;
    position: absolute;
    right: 15px;
    top: -30px;
  }
  .ba26_salary_guide_content_insight .ba26_salary_guide_content_insight__title {
    font-size: 18px;
  }
}

.ba26_salary_guide_table {
  margin-bottom: 25px;
  background-color: var(--ba26-secondary-25);
  overflow: hidden;
  border-radius: 12px;
}
.ba26_salary_guide_table thead th {
  background-color: rgba(210, 219, 229, 0.4);
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: var(--ba26-secondary);
  padding: 15px 20px;
}
.ba26_salary_guide_table tbody tr {
  border-top: 1px solid var(--ba26-secondary-50);
}
.ba26_salary_guide_table tbody td {
  padding: 12px 20px 10px 20px;
  line-height: 140%;
}
.ba26_salary_guide_table tbody td a {
  text-underline-offset: 2px;
  text-decoration: underline;
  color: var(--ba26-secondary);
}
@media (max-width: 1191px) {
  .ba26_salary_guide_table thead th {
    font-size: 20px;
    padding: 12px 18px;
  }
  .ba26_salary_guide_table tbody td {
    padding: 12px 18px 10px 18px;
  }
}
@media (max-width: 767px) {
  .ba26_salary_guide_table thead th {
    font-size: 16px;
  }
}
@media (max-width: 591px) {
  .ba26_salary_guide_table {
    overflow: scroll;
  }
  .ba26_salary_guide_table table {
    width: 650px;
  }
}

.ba26_salary_guide_table--benchmarks thead th {
  width: 33%;
}
.ba26_salary_guide_table--benchmarks .ba26_salary_guide_table__compensation-price {
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.02em;
}
@media (max-width: 1191px) {
  .ba26_salary_guide_table--benchmarks .ba26_salary_guide_table__compensation-price {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .ba26_salary_guide_table--benchmarks .ba26_salary_guide_table__compensation-price {
    font-size: 18px;
  }
}

.ba26_salary_guide_table--hourly-rates .ba26_salary_guide_table__compensation {
  width: 55%;
}
.ba26_salary_guide_table--hourly-rates .ba26_salary_guide_table__hourly {
  width: 45%;
}
.ba26_salary_guide_table--hourly-rates .ba26_salary_guide_table__hourly-price {
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.02em;
}
@media (max-width: 1191px) {
  .ba26_salary_guide_table--hourly-rates .ba26_salary_guide_table__hourly-price {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .ba26_salary_guide_table--hourly-rates .ba26_salary_guide_table__hourly-price {
    font-size: 18px;
  }
}

.ba26_salary_guide_content_scenario {
  margin-top: 25px;
  margin-bottom: 15px;
}
@media (max-width: 591px) {
  .ba26_salary_guide_content_scenario {
    margin-bottom: 15px;
  }
}

.ba26_salary_guide_content_scenario__head {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  background-color: var(--ba26-primary);
  border-radius: 12px 12px 0 0;
  display: inline-block;
  padding: 10px 20px;
}
@media (max-width: 1191px) {
  .ba26_salary_guide_content_scenario__head {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .ba26_salary_guide_content_scenario__head {
    font-size: 18px;
  }
}
@media (max-width: 591px) {
  .ba26_salary_guide_content_scenario__head {
    font-size: 16px;
    border-radius: 8px 8px 0 0;
  }
}

.ba26_salary_guide_content_scenario__body {
  background-color: var(--ba26-secondary-25);
  padding: 20px;
  border-radius: 0 12px 0 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
.ba26_salary_guide_content_scenario__body .ba26_salary_guide_content_scenario__point {
  margin-bottom: 0;
}
.ba26_salary_guide_content_scenario__body .ba26_salary_guide_content_scenario__list {
  padding: 0;
  margin: 0;
  min-width: 340px;
  width: 340px;
}
.ba26_salary_guide_content_scenario__body .ba26_salary_guide_content_scenario__list li {
  color: var(--ba26-secondary);
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  display: block;
  padding: 3px 0;
}
.ba26_salary_guide_content_scenario__body .ba26_salary_guide_content_scenario__list li span {
  color: var(--ba26-primary);
}
@media (max-width: 1191px) {
  .ba26_salary_guide_content_scenario__body {
    gap: 10px;
  }
  .ba26_salary_guide_content_scenario__body .ba26_salary_guide_content_scenario__list {
    min-width: 250px;
    width: 250px;
  }
  .ba26_salary_guide_content_scenario__body .ba26_salary_guide_content_scenario__list li {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .ba26_salary_guide_content_scenario__body .ba26_salary_guide_content_scenario__list {
    min-width: 50%;
    width: 50%;
  }
  .ba26_salary_guide_content_scenario__body .ba26_salary_guide_content_scenario__list li {
    font-size: 16px;
  }
}
@media (max-width: 591px) {
  .ba26_salary_guide_content_scenario__body {
    flex-wrap: wrap;
    border-radius: 0 8px 0 0;
  }
  .ba26_salary_guide_content_scenario__body .ba26_salary_guide_content_scenario__list {
    min-width: 100%;
    width: 100%;
  }
  .ba26_salary_guide_content_scenario__body .ba26_salary_guide_content_scenario__point {
    padding: 0 0 0 18px;
  }
}

.ba26_salary_guide_content_scenario__footer {
  background-color: var(--ba26-secondary);
  color: #fff;
  border-radius: 0 0 12px 12px;
  padding: 16px 20px;
}
.ba26_salary_guide_content_scenario__footer span {
  font-size: 32px;
  line-height: 125%;
  font-weight: 600;
}
@media (max-width: 1191px) {
  .ba26_salary_guide_content_scenario__footer span {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .ba26_salary_guide_content_scenario__footer span {
    font-size: 20px;
  }
}
@media (max-width: 591px) {
  .ba26_salary_guide_content_scenario__footer {
    border-radius: 0 0 8px 8px;
  }
}

.ba26_salary_guide_content_card {
  background-color: var(--ba26-secondary-25);
  padding: 40px 25px 25px;
  border-radius: 12px;
}
.ba26_salary_guide_content_card .ba26_salary_guide_content_insight {
  margin-bottom: 0;
}
.ba26_salary_guide_content_card .ba26_salary_guide_content_card__inner {
  display: flex;
  margin-bottom: 24px;
  gap: 12px;
}
.ba26_salary_guide_content_card .ba26_salary_guide_content_card__inner ul {
  margin-bottom: 0;
}
.ba26_salary_guide_content_card .ba26_salary_guide_content_card__inner ul li {
  padding: 4px 0;
}
.ba26_salary_guide_content_card .ba26_salary_guide_content_card__inner ul li a {
  text-underline-offset: 2px;
  text-decoration: underline;
  color: var(--ba26-gray);
}
.ba26_salary_guide_content_card .ba26_salary_guide_content_logo {
  background-color: #fff;
  border-radius: 12px;
  width: 198px;
  min-width: 198px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
@media (max-width: 767px) {
  .ba26_salary_guide_content_card .ba26_salary_guide_content_card__inner {
    flex-direction: column;
  }
  .ba26_salary_guide_content_card .ba26_salary_guide_content_logo {
    width: 100%;
    min-width: 100%;
  }
}
@media (max-width: 591px) {
  .ba26_salary_guide_content_card {
    padding: 20px 15px 15px;
  }
}

.ba26_salary_guide_content_mapsource {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
}

.ba26_salary_guide_content__block {
  margin-bottom: 50px;
}
.ba26_salary_guide_content__block p:last-of-type {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .ba26_salary_guide_content__block {
    margin-bottom: 35px;
  }
}
@media (max-width: 591px) {
  .ba26_salary_guide_content__block {
    margin-bottom: 30px;
  }
}

.ba26_salary_guide_aside {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .ba26_salary_guide_aside {
    display: none;
  }
}

.ba26_contact_us {
  position: relative;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 60px;
}
.ba26_contact_us .ba26_contact_us_hero__img {
  width: 100%;
  margin-top: -37%;
}
.ba26_contact_us .ba26_contact_us_hero__inner {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}
.ba26_contact_us .ba26_contact_us_hero__inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(95.67deg, #009996 1.9%, #032144 99.4%);
  z-index: -1;
}
.ba26_contact_us .ba26_contact_us_hero__content {
  width: 100%;
  z-index: 2;
  padding: 40px 60px;
  position: relative;
}
.ba26_contact_us .ba26_contact_us_hero__subtitle {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  display: block;
}
.ba26_contact_us .ba26_contact_us_hero__title {
  font-weight: 600;
  font-size: 52px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.ba26_contact_us p {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  max-width: 560px;
  color: #fff;
  margin-bottom: 12px;
}
@media (max-width: 1191px) {
  .ba26_contact_us .ba26_contact_us_hero__title {
    font-size: 42px;
  }
  .ba26_contact_us p {
    font-size: 16px;
  }
  .ba26_contact_us .ba26_contact_us_hero__subtitle {
    font-size: 24px;
  }
  .ba26_contact_us .ba26_contact_us_hero__content {
    padding: 30px 40px;
  }
}
@media (max-width: 991px) {
  .ba26_contact_us {
    padding-top: 20px;
  }
  .ba26_contact_us .ba26_contact_us_hero__title {
    font-size: 30px;
  }
  .ba26_contact_us p {
    font-size: 16px;
  }
  .ba26_contact_us .ba26_contact_us_hero__subtitle {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .ba26_contact_us .ba26_contact_us_hero__content {
    padding: 20px 30px;
  }
  .ba26_contact_us .ba26_contact_us_hero__img {
    display: none;
  }
  .ba26_contact_us .ba26_contact_us_hero__inner {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .ba26_contact_us .ba26_contact_us_hero__content {
    padding: 40px;
    transform: unset;
    top: 0;
  }
  .ba26_contact_us .ba26_contact_us_hero__inner {
    border-radius: 8px;
  }
  .ba26_contact_us p br {
    display: none;
  }
}
@media (max-width: 575px) {
  .ba26_contact_us .ba26_contact_us_hero__content {
    padding: 20px;
  }
  .ba26_contact_us .ba26_contact_us_hero__title {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .ba26_contact_us .ba26_contact_us_hero__subtitle {
    font-size: 16px;
  }
}

.ba26_contact_us_form {
  padding: 30px;
  background: #FFFFFF;
  border: 1px solid #D2DBE5;
  box-shadow: 0px 3px 3px rgba(113, 130, 152, 0.1);
  border-radius: 12px;
}
@media (max-width: 767px) {
  .ba26_contact_us_form {
    border-radius: 8px;
  }
}

.ba26_providers_heading {
  margin-bottom: 40px;
}
.ba26_providers_heading .ba26_providers_heading__title {
  font-size: 40px;
  color: #042C5A;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ba26_providers_heading.ba26_providers_heading--center {
  text-align: center;
}
.ba26_providers_heading p {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
}
@media (max-width: 1380px) {
  .ba26_providers_heading .ba26_providers_heading__title {
    font-size: 36px;
  }
}
@media (max-width: 1191px) {
  .ba26_providers_heading .ba26_providers_heading__title {
    font-size: 32px;
  }
  .ba26_providers_heading p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .ba26_providers_heading .ba26_providers_heading__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .ba26_providers_heading {
    margin-bottom: 30px;
  }
  .ba26_providers_heading .ba26_providers_heading__title {
    font-size: 24px;
  }
  .ba26_providers_heading p {
    font-size: 16px;
  }
}

.ba26_providers_hero {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 150px);
  min-height: 550px;
}
.ba26_providers_hero .ba26_providers_hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
}
.ba26_providers_hero .ba26_providers_hero__woman {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
}
.ba26_providers_hero .ba26_providers_hero__inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
.ba26_providers_hero .ba26_providers_hero__subtitle {
  color: var(--ba26-primary-500);
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 15px;
}
.ba26_providers_hero .ba26_providers_hero__title {
  font-weight: 600;
  font-size: 52px;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #042C5A;
}
.ba26_providers_hero p {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: var(--ba26-gray);
  max-width: 660px;
}
.ba26_providers_hero .ba26_providers_hero__btns {
  display: flex;
  margin-top: 25px;
  gap: 16px;
}
.ba26_providers_hero .ba26_providers_hero__img-mobile {
  display: none;
}
.ba26_providers_hero .ba26_providers_hero-mobile {
  display: none;
}
.ba26_providers_hero .ba26_providers_hero_tooltip {
  position: absolute;
  background-color: var(--ba26-primary-25);
  border-radius: 10px;
  font-size: 15px;
  color: var(--ba26-gray);
}
.ba26_providers_hero .ba26_providers_hero_tooltip .ba26_providers_hero_tooltip__icon {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background-color: var(--ba26-primary-500);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--left {
  width: 185px;
  top: 38%;
  right: 22%;
  padding: 25px 20px 25px 22px;
  z-index: 3;
  animation: upDown 5s ease-in-out infinite;
}
.ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--left .ba26_providers_hero_tooltip__icon {
  left: -20px;
  top: -20px;
}
.ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--right {
  width: 195px;
  top: 24%;
  left: 81%;
  padding: 18px 20px 15px 38px;
  animation: downUp 5s ease-in-out infinite;
}
.ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--right .ba26_providers_hero_tooltip__icon {
  right: -20px;
  top: -20px;
  background-color: var(--ba26-primary-500);
}
@media (max-width: 1380px) {
  .ba26_providers_hero .ba26_providers_hero__title {
    font-size: 42px;
  }
  .ba26_providers_hero p {
    font-size: 18px;
  }
  .ba26_providers_hero .ba26_providers_hero__subtitle {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--right {
    left: 80%;
  }
  .ba26_providers_hero .ba26_providers_hero__woman {
    object-position: 83% center;
  }
}
@media (max-width: 1191px) {
  .ba26_providers_hero .ba26_providers_hero__title {
    font-size: 34px;
    margin-bottom: 12px;
  }
  .ba26_providers_hero .ba26_providers_hero__subtitle {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .ba26_providers_hero p {
    font-size: 16px;
  }
  .ba26_providers_hero .ba26_providers_hero__woman {
    left: -40px;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip {
    font-size: 14px;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip .ba26_providers_hero_tooltip__icon {
    height: 42px;
    width: 42px;
    padding: 10px;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--left {
    right: 27%;
    padding: 18px 10px 17px 25px;
    width: 170px;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--right {
    left: 75%;
    padding: 18px 15px 15px 48px;
  }
}
@media (max-width: 991px) {
  .ba26_providers_hero .ba26_providers_hero__title {
    font-size: 28px;
  }
  .ba26_providers_hero .ba26_providers_hero__title br {
    display: none;
  }
  .ba26_providers_hero .ba26_providers_hero__subtitle {
    font-size: 18px;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--right {
    left: 71%;
    padding: 15px 20px 15px 50px;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--left {
    right: 32%;
    padding: 12px 15px 12px 22px;
    top: 40%;
  }
  .ba26_providers_hero .ba26_providers_hero__inner {
    top: 45%;
  }
}
@media (max-width: 767px) {
  .ba26_providers_hero {
    height: auto;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip {
    display: none;
  }
  .ba26_providers_hero .ba26_providers_hero__woman,
  .ba26_providers_hero .ba26_providers_hero__img {
    display: none;
  }
  .ba26_providers_hero .ba26_providers_hero-mobile {
    display: block;
  }
  .ba26_providers_hero .ba26_providers_hero-mobile {
    position: relative;
  }
  .ba26_providers_hero .ba26_providers_hero-mobile .ba26_providers_hero__img-mobile {
    display: block;
  }
  .ba26_providers_hero .ba26_providers_hero-mobile .ba26_providers_hero__woman-mobile {
    position: absolute;
    top: 0;
  }
  .ba26_providers_hero p {
    margin-right: 0;
    max-width: 440px;
  }
  .ba26_providers_hero .ba26_providers_hero__inner {
    padding-top: 40px;
    position: relative;
    transform: unset;
    top: unset;
  }
  .ba26_providers_hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: #f8f5ef;
    height: 60%;
    width: 100%;
    z-index: -1;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip.ba26_providers_hero_tooltip--left {
    right: 50%;
    padding: 12px 12px 12px 20px;
    top: 60%;
    display: block;
    width: 140px;
  }
  .ba26_providers_hero .ba26_providers_hero_tooltip {
    font-size: 13px;
  }
}
@media (max-width: 591px) {
  .ba26_providers_hero .ba26_providers_hero__btns {
    gap: 10px;
  }
  .ba26_providers_hero p {
    margin-right: 0;
  }
  .ba26_providers_hero .ba26_providers_hero-mobile {
    height: 500px;
    width: 100%;
  }
  .ba26_providers_hero .ba26_providers_hero__woman-mobile,
  .ba26_providers_hero .ba26_providers_hero__img-mobile {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

.ba26_blog_card {
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid var(--ba26-secondary-50);
  border-radius: 16px;
  font-size: 16px;
  height: calc(100% - 24px);
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  transition: all 0.2s ease-in-out;
}
.ba26_blog_card .ba26_blog_card__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ba26_blog_card .ba26_blog_card__readtime {
  margin-bottom: 0;
}
.ba26_blog_card .ba26_blog_card__text {
  margin-bottom: 20px;
}
.ba26_blog_card .ba26_blog_card__author {
  display: flex;
  align-items: center;
}
.ba26_blog_card .ba26_blog_card__author img {
  width: 32px;
  min-width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 10px;
}
.ba26_blog_card .ba26_blog_card__author a {
  margin-left: 4px;
}
.ba26_blog_card .ba26_blog_card__date {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ba26_blog_card .ba26_blog_card__body {
  flex-grow: 1;
  padding: 18px 0;
}
.ba26_blog_card .ba26_blog_card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--ba26-secondary-50);
  padding-top: 10px;
}
.ba26_blog_card .ba26_blog_card__header {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.ba26_blog_card .ba26_blog_card__header img {
  width: 100%;
}
.ba26_blog_card .ba26_blog_card__catogery {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  width: 100%;
  padding: 5px 15px;
  font-weight: 500;
}
.ba26_blog_card:hover {
  background-color: rgba(213, 240, 240, 0.5);
}

.ba26_blog_pagination {
  background-color: #F7F9FB;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba26_blog_pagination ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.ba26_blog_pagination ul li {
  display: inline-block;
}
.ba26_blog_pagination .ba26_blog_pagination__link {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid var(--ba26-secondary-25);
  border-radius: 20px;
  font-size: 14px;
  color: var(--ba26-secondary);
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  margin: 0 5px;
}
.ba26_blog_pagination .ba26_blog_pagination__link.active {
  color: var(--ba26-primary);
  background-color: var(--ba26-primary-25);
  border-color: var(--ba26-primary-25);
}
.ba26_blog_pagination .ba26_blog_pagination__link-prev,
.ba26_blog_pagination .ba26_blog_pagination__link-next {
  padding: 10px 20px;
  margin: 0 25px;
  color: #fff;
  background-color: var(--ba26-primary);
  border-color: var(--ba26-primary);
}
.ba26_blog_pagination .ba26_blog_pagination__link-prev.disabled,
.ba26_blog_pagination .ba26_blog_pagination__link-next.disabled {
  background-color: var(--ba26-secondary-50);
  border-color: var(--ba26-secondary-50);
}

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