:root {
  --bs-primary: #FF9D00;
  --bs-primary-dark: #e28b00;
  --bs-primary-rgb: 255,157,0;
}

body {
  font-family: "Noto Sans JP", var(--bs-body-font-family);
  max-width: 100%;
  overflow-x: hidden;
}

.btn {
  border-radius: 50px;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #eb9101;
  --bs-btn-hover-border-color: var(--bs-primary-dark);
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary-dark);
  --bs-btn-active-border-color: #fcae30;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
  --bs-btn-padding-x: 1.25em;
  --bs-btn-border-radius: 1.5em;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75em;
  min-width: 14em;
  background: conic-gradient(from -4.66deg at 103.6% -24.17%, #FF6B00 0deg, #FF9D00 0.71deg, #FF6B00 360deg);
  border-width: 0;
  line-height: 20px;
}

.btn-primary:hover {
  background: conic-gradient(from -3.29deg at 100% -13%, #FFA459 0deg, #FF9D00 0.15deg, #FFA459 360deg);
  box-shadow: 0px 0px 30px 0px rgba(255, 107, 0, 0.15);

}

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: 13,110,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--bs-primary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-primary);
  --bs-gradient: none;
  --bs-btn-padding-x: 1.25em;
  --bs-btn-padding-y: .25em;
  --bs-btn-border-radius: 1.5em;

  display: flex;
  align-items: center;
  gap: .75em;
  min-width: 14em;
}

.btn-light {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-primary);
  --bs-btn-hover-bg: #e3e3e3;
  --bs-btn-hover-border-color: #eb9101;
  --bs-btn-focus-shadow-rgb: 211,212,213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-btn-padding-x: 1.25em;
  --bs-btn-padding-y: .475em;
  --bs-btn-border-radius: 1.5em;
  min-width: 14em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--bs-primary);
  line-height: 20px;
  min-width: max-content;
}

a.btn-light:active, a.btn-light:hover,.btn-light:hover {
  background: rgba(255, 157, 0, 1)!important;
  color: rgba(255, 255, 255, 1)!important;
  border-color: var(--bs-primary);
  box-shadow: 0px 0px 30px 0px rgba(255, 107, 0, 0.15);

}

a.btn-light{
  color: var(--bs-primary)!important;
}

.btn-primary > span, .btn-outline-primary > span {
  flex-grow: 1;
}

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

.navbar {
  background-color: white;
  filter: drop-shadow(0px 1px 30px rgba(198, 198, 198, .6));
  z-index: 100;
  height: 75px;
}

.navbar .navbar-collapse {
  background-color: white;
  margin-left: -40px;
  margin-right: -40px;
  margin-top: .475em;
  padding-bottom: 1em;
}

.navbar .navbar-nav {
  display: flex;
  flex-flow: column;
  justify-items: center;
  margin-bottom: 1em;
}

.navbar .navbar-nav .nav-item {
  text-align: center;
}

.navbar .navbar-nav .nav-item .nav-link {
  display: flex;
  flex-flow: column;
  color: #0891B2;
}

.navbar .nav-actions {
  display: flex;
  flex-flow: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 1.275em;
  padding-top: 1em;
}

.navbar .nav-actions-buttons {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: .875em;
}

.navbar .nav-actions-buttons .btn {
  min-width: 18em;
}

.footer {
  background-color: #0891B2;
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-top: 5em;
  padding: 1em;
  color: #FFFFFF;
}

.footer-links {
  display: flex;
  flex-flow: wrap;
  gap: .5em 2em;
  margin-bottom: 1em;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover, .footer-links a:active {
  text-decoration: underline;
}

.btn {
  height: 60px;
}

.link-login {
  color: rgba(8, 145, 178, 1);
  font-weight: 500;
}

.link-login:hover {
  color: rgba(255, 157, 0, 1);

}

.link-info {
  font-weight: 900;
}

.nav-container {
  width: calc(100% - 40px);
  margin-top: 8.5px;
  margin-bottom: 8.5px;
}

.container {
  max-width: 100%;
  padding-left: 20px!important;
  padding-right: 20px!important;
}

.dotted-line-container {
  position: relative;
  height: calc(100% - 24px);
  overflow: hidden;
}

.dotted-line {
  position: absolute;
  border: 1px dashed #0891B2;
  height: 100%;
  left: 50%;
}


@media (min-width: 576px) {
  .section-two {
    margin-top: 94px;
  }
  .container {
    max-width: 100%;
    padding-left: 20px!important;
    padding-right: 20px!important;
  }
 }

@media (min-width: 768px) { 

  .navbar {
    height: 90px;
  }


  .nav-container {
    max-width: 100%;
    padding-left: 20px!important;
    padding-right: 20px!important;
  }

  .overlay {
    overflow: hidden;
  }

  .section-two {
    margin-top: 160px;
  }

  .section-two-content {
    margin-left: 25%!important;
    margin-right: 25%!important;
  }

  .container {
    max-width: 100%;
  }

  .navbar-collapse {
    flex-basis: auto;
    flex-grow: unset!important;
    margin-right: 20px!important;
  }

  .section-three-2-1 {
    width: 100%!important;
  }


 }

@media (min-width: 992px) { 

  .section-two {
    margin-top: 0px;
  }

  .container {
    max-width: 100%;
  }

  .overlay {
    overflow: hidden;
  }

 }


@media (min-width: 1200px) { 

}

@media (min-width: 1400px) { 
  .container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0!important;
    padding-right: 0!important;
  }

  .nav-container {
    max-width: 1440px;
    padding-left: 36px!important;
    padding-right: 36px!important;
    margin-left: auto;
    margin-right: auto;
  }

  .navbar-collapse {
    margin-right: 0!important;
  }
 }

@media (max-width: 768px){
 

}
@media (max-width: 992px){
 
}

@media (min-width:768px) {
  .navbar .container {
    padding-right: 2em;
    padding-left: 2em;
  }

  .bg-navbar {
    background: linear-gradient(to right, #FFF, rgba(206,233, 240, 0.8));
  }

  .navbar .navbar-nav {
    display: none;
  }

  .navbar .navbar-collapse {
    display: flex;
   
    background-color: transparent;
    margin-top: unset;
    padding-bottom: unset;
  }

  .navbar .nav-actions {
    flex-flow: row;
    gap: 1.25em;
    padding-top: unset;
  }

  .navbar .nav-actions-buttons {
    flex-flow: row;
    gap: 1.25em;
  }

  .navbar .nav-actions-buttons .btn {
    min-width: 14em;
  }
}


.navbar-toggler {
  border-width: 0!important;
  padding: 0;
}

.navbar-toggler[aria-expanded="false"] > svg > g#close {
  display: none;
}

.navbar-toggler[aria-expanded="true"] > svg > g#menu {
  display: none;
}

.text-watermark {
  text-transform: uppercase;
  color: #F1F1F1;
}

.highlight {
  color: #0891B2;
}

.main-content {
  margin-top: 5em;
}

.main-content > h5 {
  margin-top: 3em;
}

.main-content > ul {
  list-style: none;
  padding-left: .5em;
}

.breadcrumb-item {
  --bs-breadcrumb-item-active-color: #0891B2;
}

.breadcrumb-item a {
  color: inherit;
}

.breadcrumb-item+.breadcrumb-item::before {
  float: left;
  color: var(--bs-breadcrumb-divider-color);
  content: "";
  width: 3.75em;
  height: 1.25em;
  background: url('../images/chevron-right.svg') no-repeat 50% 100%;
}

.page-heading {
  position: relative;
  margin-top: 3em;
  margin-bottom: 4em;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2em;
  padding-right: 2em;
}

.page-heading h2, .page-heading h3, .page-heading h4 {
  position: relative;
  text-align: center;
  box-sizing: content-box;
}

.page-heading h2::before, .page-heading h2::after, 
.page-heading h4::before, .page-heading h4::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url('../images/heading-icon.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 32px;
  height: 32px;
  top: -5px;  
  scale: .6;
}

.page-heading h2::before, .page-heading h4::before {
  left: -1.5em;
}

.page-heading h2::after, .page-heading h4::after {
  right: -1.5em;
}

.page-heading.white h2::before, .page-heading.white h2::after,
.page-heading.white h4::before, .page-heading.white h4::after {
  background: url('../images/heading-icon-white.svg') no-repeat 50% 100%;
}

.page-heading h3, .page-heading h4 {
  color: #0891B2;
}

@media (min-width:768px) {
  .page-heading {
    width: auto;
    margin-top: 3em;
    margin-bottom: 4em;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .page-heading h2::before, .page-heading h2::after,
  .page-heading h4::before, .page-heading h4::after {
    width: 1em;
    height: 1.125em;
    top: 0;
    scale: 1;
    left: unset;
    right: unset;
  }

  .page-heading h2::before,
  .page-heading h4::before {
    margin-left: -1.5em;
  }

  .page-heading h2::after,
  .page-heading h4::after {
    margin-left: .5em;
  }
}

.info-list {
  margin-top: 1em;
  display: grid;
  grid-template-columns: 30% 70%;
}

.info-list > div.label {
  padding-left: 6em;
  font-weight: bold;
}

.info-list > div {
  border-bottom: 1px solid #ccc;
  padding-top: 1em;
  padding-bottom: 1em;
}

.info-list ul {
  list-style: none;
  position: relative;
  line-height: 2.5em;
}

.info-list ul > li::before {
  content: "";
  display: block;
  background: url('../images/bullet.svg') no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  margin-top: .785em;
  margin-left: -1.75em;
}

.section {
  position: relative;
  padding-top: 1em;
  min-height: 10em;
  max-width: 100%;
  margin-left: 0;  
  margin-right: 0;
}

.section-one {
  position: relative;
  padding-top: 5em;
  padding-bottom: 1em;
  background: linear-gradient(90deg, #fff, #e1f3f8 20%, #0891B2);
  background-repeat: no-repeat;
  background-size: cover;
}

.section-one::before {
  content: "";
  position: absolute;
  width: 3.5em;
  height: 3.5em;
  background: url('../images/section-one-image-small-1.svg') no-repeat 50% 50%;
  background-size: contain;
}

.section-one::after {
  content: "";
  background: linear-gradient(90deg, #fff, #e1f3f8 20%, #0891B2);
  position: absolute;
  display: block;
  top: 100%;
  left: 0px;
  width: 100%;
  height: 12em;
  margin-top: -1px;
  mask-image: url(../images/section-one-bg-mask.svg);
  mask-repeat: no-repeat;
  mask-mode: alpha;
  mask-size: 100%;
  mask-origin: border-box;
}

.section-one .section-bkg {
  margin-top: -3px;
}

.section-one .overlay {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
}

.section-one .overlay::after {
  content: "";
  position: absolute;
  width: 4em;
  height: 4em;
  right: 3em;
  bottom: 13em;
  background: url('../images/section-one-image-small-2.svg') no-repeat 50% 50%;
  background-size: contain;
}


.section-one .section-content {
  padding-top: .5em;
  padding-left: .5em;
  display: flex;
  flex-flow: column;
  gap: 1.5em;
}

.section-one .section-content h1 {
  color: #0891B2;
  margin-bottom: .5em;
}

.section-one .section-content .certifications {
  flex: none;
  margin-top: 1em;
  width: 8em;
}

.section-one .section-image {
  display: none;
  margin-left: 0;
  margin-top: 2em;
  max-width: 100%;
}

.section-one .section-image.small {
  display: inline-block;
  margin-top: -2em;
}

.section-one .tip {
  display: flex;
  flex-flow: column;
  border-left: .5em solid #0891B2;
  padding: 0 0 0 .5em;
}

.section-one .section-actions {
  display: flex;
  flex-flow: column;
  gap: 1em;
  margin-top: 1em;
  width: 15em;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width:768px) {
  .section {
    padding-top: 4em;
    padding-left: 0;
    padding-right: 0;
  }

  .section-one {
    background: none;
    padding-top: 0;
  }

  .section-one::before {
    display: none;
  }

  .section-one::after {
    display: none;
  }

  .section-one .overlay {
    position: absolute;
    left: 0;
    top: 6.5em;
    /* grid-template-columns: 58% 42%; */
  }

  .section-one .overlay::after {
    display: none;
  }

  .section-one .section-content {
    padding-top: 3.5em;
    padding-left: 5em;
    gap: 1em;
  }

  .section-one .section-content h3 {
    font-size: 280%;
  }

  .section-one .section-image {
    display: inline-block;
    max-width: unset;
  }

  .section-one .section-image.small {
    display: none;
  }

  .section-one .section-content .certifications {
    width: 220px;
  }

  .section-one .section-actions {
    flex-flow: row;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.section-two {
  padding-top: 4em;
}

.section-two::before {
  content: "";
  display: none;
  position: absolute;
  width: 12em;
  height: 20em;
  right: 0;
  top: 7em;
  background: url('../images/section-two-bg1.svg') no-repeat 50% 50%;
  background-size: contain;
}

.section-two::after {
  content: "";
  display: block;
  position: relative;
  width: 15em;
  height: 10em;
  margin-left: auto;
  margin-right: auto;
  background: url('../images/section-two-bg2.svg') no-repeat 50% 50%;
  background-size: contain;
}

.section-heading {
  position: relative;
  color: #F1F1F1;
  font-size: 2.235em;
  margin-bottom: 1em;
}

.section-heading > span {
  position: absolute;
  left: .125em;
  margin-top: 1em;
  color: #0891B2;
  font-size: .575em;
}

.section-heading.white {
  color: #FFFFFF;
}

.section-two-content {
  margin-left: .25em;
  margin-right: .25em;
}

.section-two-content h3 {
  text-align: center;
}

.section-two-content .collapse-control {
  display: flex;
  flex-flow: column-reverse;
  justify-content: center;
  padding-bottom: 1em;
}

.section-two-content .collapse-actions {
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-bottom: 1em;
}

.section-two-content .collapse-actions .eclipse {
  display: block;
}

.section-two-content .collapse-actions .btn {
  display: flex;
  flex-flow: column;
  justify-content: center;
  color: #0891B2;
}

.section-two-content .collapse-actions .btn > img {
  width: 2em;
  flex: none;
  margin-left: auto;
  margin-right: auto;
}

.section-two-content .collapse.show ~ .collapse-actions {
  display: none;
}

@media (min-width:768px) {
  .section-two::before {
    display: inline-block;
  }

  .section-two::after {
    position: absolute;
    bottom: 1em;
  }

  .section-two-content {
    margin-left: 18em;
    margin-right: 18em;
  }

  .section-two-content .collapse-actions {
    display: none;
  }

  .section-two-content .collapse {
    display: block;
  }

  .section-heading {
    font-size: 6.325em;
  }

  .section-heading > span {
    font-size: 2.5rem;
    margin-top: 1.475em;
  }
}

.section-three {
  padding-top: 1em;
}

.section-three .section-heading {
  margin-bottom: .25em;
  padding-top: .375em;
}

.section-three-1 {
  display: block;
  position: relative;
  min-height: 26em;
}

.section-three-1::before {
  content: "";
  position: absolute;
  top: 2em;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(2, 178, 223, 0.2);
  transform: skew(0deg, 10deg);
}

.section-three-1::after {
  content: "";
  position: absolute;
  top: 2em;
  right: 0;
  height: 100%;
  width: 100%;
  background: rgba(2, 178, 223, .2);
  transform: skew(0deg, -10deg);
  z-index: -1;
}

.section-three-2 {
  display: block;
  position: relative;
  min-height: 80em;
  margin-top: 2em;
  background: linear-gradient(#caf0fa 10%, rgba(255, 255, 255, 0));
  padding-top: 2em;
}

.section-three-2 .page-heading {
  margin-top: 0;
}

.section-three-2 .page-heading > h2 {
  font-size: 1.125em;
}

.section-three-2-1 {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.section-three-2-1::after {
  content: "";
  display: none;
  position: absolute;
  width: 14em;
  height: 14em;
  right: 0;
  top: 30%;
  background: url('../images/section-three-2-1-bkg.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.section-three-2-1 > div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2em;
}

.section-three-2-1 .title, .section-three-2-1 .dark-text,
.section-three-2-1 .dark-arrows, .section-three-2-1 .dark-arrow-split, 
.section-three-2-1 .light, .section-three-2-1 .light-text, 
.section-three-2-1 .light-arrow-head, .section-three-2-1 .light-arrow-split {
  position: relative;
  width: 10em;
}

.section-three-2-1 .title {
  font-weight: 700;
  font-size: 1.2em;
  width: 8em;
}

.section-three-2-1 .title.large {
  display: none;
}

.section-three-2-1 .title.small {
  display: flex;
  align-items: center;
  margin-top: -1em;
  margin-bottom: 2em;
}

.section-three-2-1 .spacer {
  display: none;
}

.section-three-2-1 .dark-arrow-top {
  position: relative;
  display: block;
  margin-top: 3em;
  margin-bottom: -.5em;
  width: 10em;
  height: .5em;
  background-color: #0891B2;
}

.section-three-2-1 .dark-arrow-top::before {
  content: "";
  position: absolute;
  bottom: 1.95em;
  left: 0;
  width: 0;
  height: 0;
  border-left: 5em solid #0891B2;
  border-right: 5em solid #0891B2;
  border-top: 4em solid transparent;
}

.section-three-2-1 .dark-arrows {
  display: none;
  align-items: center;
  grid-row: span 4;
}

.section-three-2-1 .dark-arrows-small {
  display: flex;
  align-items: center;
  margin-bottom: 1.5em;
}

.section-three-2-1 .dark-arrows > img {
  width: 8.5em;
  margin-top: -4.5em;
}

.section-three-2-1 .dark-arrows-small > img {
  width: 7.5em;
  margin-top: -2em;
}

.section-three-2-1 .dark-text {
  background-color: #D9F0F6;
  padding: 2em 1em 2em 1em;
  margin-left: 0;
  width: 12em;
  border-left: 1em solid rgba(250, 250, 250, .3);
  border-right: 1em solid rgba(250, 250, 250, .3);
  margin-bottom: 1.25em;
}

.section-three-2-1 .dark-text::after {
  content: "";
  background-color: #0891B2;
  position: absolute;
  display: block;
  width: 10em;
  height: 1.75em;
  top: 100%;
}

.section-three-2-1 .dark-arrow-split {
  display: block;
  height: 5em;
  border-top: 1px solid #0891B2;
}

.section-three-2-1 .dark-arrow-split::after {
  content: "";
  position: absolute;
  bottom: .525em;
  left: 0;
  width: 0;
  height: 0;
  border-left: 5em solid transparent;
  border-right: 5em solid transparent;
  border-top: 4em solid #0891B2;
}

.section-three-2-1 .light-arrow-top {
  position: relative;
  display: none;
  margin-top: 3em;
  width: 10em;
}

.section-three-2-1 .light-arrow-top::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 5em solid #b7ebf8;
  border-right: 5em solid #b7ebf8;
  border-top: 4em solid transparent;
}

.section-three-2-1 .light-arrow-split {
  display: block;
  height: .5em;
  background-color: #b7ebf8;
  margin-bottom: -.5em;
}

.section-three-2-1 .light-arrow-split::before {
  content: "";
  position: absolute;
  display: none;
  bottom: 1em;
  left: 0;
  width: 0;
  height: 0;
  border-left: 5em solid transparent;
  border-right: 5em solid transparent;
  border-top: 4em solid #b7ebf8;
}

.section-three-2-1 .light-arrow-split::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 2em;
  left: 0;
  width: 0;
  height: 0;
  border-left: 5em solid #b7ebf8;
  border-right: 5em solid #b7ebf8;
  border-top: 4em solid transparent;
}

.section-three-2-1 .light {
  display: none;
  background-color: #b7ebf8;
  width: 10em;
}

.section-three-2-1 .green {
  color: #0891B2;
}

.section-three-2-1 .light-text {
  background-color: #e6f0f2;
  padding: 2em 1em 2em 1em;
  margin-left: 0;
  width: 12em;
  margin-bottom: 1.25em;
  border-left: 1em solid rgba(255, 255, 255, .4);
  border-right: 1em solid rgba(255, 255, 255, .4);
}

.section-three-2-1 .light-text::after {
  content: "";
  background-color: #b7ebf8;
  position: absolute;
  display: block;
  width: 10em;
  height: 1.75em;
  top: 100%;
}

.section-three-2-1 .light-text.green {
  color: #fff;
  background-color: #52a4b9;
  border: none;
  z-index: 1;
}

.section-three-2-1 .last::after {
  display: none;
}

.section-three-2-1 .light-arrow-head {
  background-color: #b7ebf8;
  margin-bottom: 5em;
  margin-top: -2em; 
}

.section-three-2-1 .light-arrow-head::after {
  content: "";
  position: absolute;
  top: 2em;
  left: 0;
  width: 0;
  height: 0;
  border-left: 5em solid transparent;
  border-right: 5em solid transparent;
  border-top: 4em solid #b7ebf8;
}

.section-three-2-1 .year {
  position: relative;
  display: block;
  margin-top: -1em;
  margin-bottom: -1.2em;
  padding: .5em 1em .5em 1em;
  background: url('../images/section-three-block-bkg-year.png') no-repeat 50% 50%;
  background-size: contain;
  z-index: 2;
}

.section-three-2-2 {
  display: grid;
  grid-template-columns: 80%;
  justify-content: center;
  gap: .5em;
}

.section-three-2-2-block {
  background-color: #c8edf7;
  max-width: 450px;
}

.section-three-2-2-block .title {
  display: none;
  background-color: #52a4b9;
  color: #fff;
  padding: 1em 2em 1em 2em;
}

.section-three-2-2-block .content {
  padding: .5em 1em .5em 1em;
  color: #0891B2;
}

.section-three-2-2-block .content > ul {
  list-style: none;
}

.section-three-2-2-block .content > ul > li::before {
  content: "";
  display: block;
  background: url('../images/bullet-blue.svg') no-repeat 50% 50%;
  background-size: contain;
  width: 18px;
  height: 18px;
  position: absolute;
  margin-top: .235em;
  margin-left: -1.75em;
}

.section-three-3 {
  display: block;
  position: relative;
  margin-top: 2em;
  margin-bottom: 15em;
  background: linear-gradient(rgba(255, 255, 255, 0), #caf0fa);
}

.section-three-3::after {
  content: "";
  background-color: #caf0fa;
  position: absolute;
  display: block;
  top: 100.01%;
  left: 0px;
  width: 100%;
  height: 12em;
  mask-image: url(../images/section-bgmask-bottom.svg);
  mask-repeat: no-repeat;
  mask-mode: alpha;
  mask-size: 100%;
}

.section-three-3-content {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  margin-top: -2em;
}

.section-three-3-block {
  position: relative;
  display: flex;
  width: 100%;
  height: 13em;
  background: url('../images/section-three-3-block-bkg.png') no-repeat 50% 50%;
  background-size: contain;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.section-three-3-block img {
  position: absolute;
  top: -0.1em;
}

.section-three-1-content {
  padding-top: 2em;
  padding-left: 0;
  padding-right: 0;
}

.section-three-1-content > ul {
  padding-top: 2em;
  color: #0891B2;
}

.section-three-1-content > ul > li::before {
  content: "";
  display: block;
  background: url('../images/bullet-blue.svg') no-repeat no-repeat 50% 50%;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  margin-top: .235em;
  margin-left: -1.75em;
}

.section-three-2 h3 {
  margin-top: 2em;
}

.section-three-4 {
  position: relative;
  margin-bottom: 7em;
  margin-top: -5em;
}

.section-three-4 .page-heading.small {
  display: flex;
  align-items: center;
  margin-top: -14em;
  height: 8em;
  background: url('../images/section-three-4-title-bkg.png') no-repeat 50% 50%;
}

.section-three-4 .page-heading.small h4::before, .section-three-4 .page-heading.small h4::after {
  display: none;
}

.section-three-4-block-content {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 100%;
  margin-top: 8em;
  overflow: hidden;
}

.section-three-4-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/section-three-block-bkg-small.png') no-repeat 50% 50%;
  background-size: contain;
  width: 100%;
  height: 20em;
  color: #0891B2;
  margin-top: -8em;
  margin-bottom: -6em;
  margin-left: auto;
  margin-right: auto;
}

.section-three-4-divider {
  position: absolute;
  display: block;
  width: 90%;
  height: 5em;
  top: 8em;
  left: 1.5em;
  background: url('../images/section-three-block-divider-small.svg') no-repeat 50% 50%;
  background-size: contain;

}

.section-three-4 .section-three-4-block-head {
  display: none;
  background: url('../images/section-three-block-bkg-large.png') no-repeat 50% 50%;
  background-size: contain;
  padding: 1.5em;
  padding-top: 2em;
}

.section-three-4 .text {
  text-align: center;
  max-width: 100%;
  margin-top: 2em;
  padding: 0 1em 0 1em;
}

.section-three-5-block {
  position: relative;
  display: flex;
  flex-flow: column;
  background-color: #D9F0F6;
  margin-bottom: 3em;
}

.section-three-5-block.left {
  margin-right: -.5em;
  margin-left: -.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.section-three-5-block.left::before {
  content: "";
  position: absolute;
  display: none;
  background: url('../images/hexagon-right.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: -4.375em;
  left: 0;
  width: 7em;
  height: 9em;
}

.section-three-5-block.right {
  margin-left: -.5em;
  margin-right: -.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  flex-flow: column-reverse;
}

.section-three-5-block.right::before {
  content: "";
  position: absolute;
  display: none;
  width: 7.5em;
  height: 100%;
  left: -7.5em;
  background-color: #D9F0F6;
  mask-image: url(../images/mask-left.svg);
  mask-repeat: no-repeat;
  mask-mode: alpha;
  mask-size: 100%;
  mask-origin: border-box;
  z-index: -1;
}

.section-three-5-block::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 8em;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 0;
}

.section-three-5-block.right::after {
  height: 3em;
}

.section-three-5-title {
  position: relative;
  margin-top: 2em;
  margin-left: 4em;
  margin-bottom: 2em;
  color: #0891B2;
}

.section-three-5-title::before {
  content: "";
  position: absolute;
  display: block;
  background: url('../images/section-three-title-icon.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 3.5em;
  height: 3.5em;
  top: -.675em;
  left: -4.5em;
}

.section-three-5-title h3 {
  font-size: 1.375em!important;
}

.section-three-5-block > img {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

@media (min-width:768px) {

  .section-three {
    padding-top: 8em;
  }

  .section-three .section-heading {
    margin-top: 0;
    padding-top: 0;
  }

  .section-three-1 {
    
  }
  .section-three-1-content {  
    padding-top: 1em;
    padding-left: 12em;
    padding-right: 12em;
  }

  .section-three-2 .page-heading {
    margin-top: 3em;
  }

  .section-three-2 .page-heading > h2 {
    font-size: 2.125em;
  }

  .section-three-2-1 {
    display: grid;
    grid-template-columns: 20% 20% 20%;
    min-height: 48em;
    width: 65em;
    justify-content: center;
    margin-bottom: -1em;
  }

  .section-three-2-1::after {
    display: block;
  }

  .section-three-2-1 .title.large {
    display: flex;
  }
  
  .section-three-2-1 .title.small {
    display: none;
  }

  .section-three-2-1 .light {
    display: block;
    height: 100%;
  }

  .section-three-2-1 .year {
    position: relative;
    display: flex;
    align-items: center;
    background: none;
  }

  .section-three-2-1 .spacer {
    display: block;
  }

  .section-three-2-1 .light-arrow-top {
    display: block;
  }

  .section-three-2-1 .dark-arrow-top {
    margin-top: 3em;
    margin-bottom: 0;
    background-color: transparent;
  }

  .section-three-2-1 .dark-arrow-top::before {
    bottom: 0;
  }

  .section-three-2-1 .dark-text, .section-three-2-1 .light-text, .section-three-2-1 .light-text.green {
    margin-left: -1em;
  }

  .section-three-2-1 .dark-text::after, .section-three-2-1 .light-text::after {
    height: 1.25em;
  }

  .section-three-2-1 .light-arrow-split,
  .section-three-2-1 .light-arrow-split::before,
  .section-three-2-1 .light-arrow-split::after {
    display: block;
  }

  .section-three-2-1 .dark-arrows {
    display: flex;
  }
  .section-three-2-1 .dark-arrows-small {
    display: none;
  }

  .section-three-2-1 .dark-arrow-split::after {
    bottom: 1em;
  }

  .section-three-2-1 .light-arrow-split {
    height: 5em;
    margin-bottom: 0;
    margin-top: 0;
    border-top: 1px solid #b7ebf8;
    background-color: transparent;
  }

  .section-three-2-1 .light-arrow-split::after {
    bottom: -.2em;
  }

  .section-three-2-1 .light-arrow-head {
    background-color: transparent;
  }

  .section-three-2-1 .light-arrow-head::after {
    top: unset;
    bottom: -1.5em;
    left: 1em;
    border-left: 4em solid transparent;
    border-right: 4em solid transparent;
    border-top: 3em solid #b7ebf8;
  }

  .section-three-2-2 {
    display: flex;
    gap: 30px;
  }

  .section-three-2-2-block .title {
    display: block;
  }

  .section-three-3 {
    margin-top: 6em;
  }

  .section-three-3::after {
    top: 99.76%;
    left: 0px;
    width: 100%;
    height: 12em;
  }

  .section-three-3-content {
    flex-flow: row;
    margin-top: -2em;
  }

  .section-three-3-block {
    max-width: 350px;
    /* height: 20em; */
  }


  .section-three-4-block {
    width: 25em;
    height: 20em;
    margin-top: -5em;
    margin-bottom: -6em;
  }

  .section-three-4 .page-heading.small {
    display: none;
  }

  .section-three-4-block-content {
    display: grid;
    grid-template-columns: 45% 45%;
    justify-content: center;
    gap: 0 6em;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }

  .section-three-4-block-content .section-three-4-block {
    margin-left: -1em;
  }

  .section-three-4-block-content .section-three-4-block.left {
    margin-left: -7em;
  }
  
  .section-three-4-block-content .section-three-4-block.right {
    margin-left: 5em;
  }

  .section-three-4-divider {
    position: absolute;
    display: block;
    width: 5em;
    height: 18em;
    top: 0;
    left: 50%;
    margin-left: -2.5em;
    background: url('../images/section-three-block-divider.svg') no-repeat 50% 50%;
    background-size: contain;
  }

  .section-three-4 .section-three-4-block-head  {
    display: block;
  }

  .section-three-4 .text {
    max-width: 30em;
    margin-top: .25em;
    margin-left: auto;
    margin-right: auto;
  }

  .section-three-5-block {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 2em;
    min-height: 28em;
    padding-left: 14em;
    padding-right: 1em;
    padding-top: 0;
    position: relative;
    background-color: transparent;
    background: url('../images/section-three-5-bkg.svg');
    background-repeat: repeat-x;
  }

  .section-three-5-block.left {
    margin-right: 16em;
    margin-bottom: 4em;
    margin-left: 0;
    padding-left: 14em;
  }

  .section-three-5-block.right {
    margin-left: 16em;
    margin-right: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 14em;
  }

  .section-three-5-block.left::before, .section-three-5-block.right::before {
    display: block;
  }

  .section-three-5-block.left::after {
    content: "";
    position: absolute;
    display: block;
    width: 7.5em;
    height: 100%;
    top: 0;
    left: 100%;
    background-color: #D9F0F6;
    mask-image: url(../images/mask-right.svg);
    mask-repeat: no-repeat;
    mask-mode: alpha;
    mask-size: 100%;
    mask-origin: border-box;
    z-index: -1;
  }

  .section-three-5-block.right::after {
    content: "";
    position: absolute;
    display: block;
    background: url('../images/hexagon-left.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: -4.375em;
    right: 0;
    bottom: unset;
    left: unset;
    width: 7em;
    height: 9em;
  }

  .section-three-5-title {
    margin-top: 4em;
    margin-left: 4em;
    margin-bottom: 2em;
  }

  .section-three-5-block.left > img {
    max-width: 28em;
  }
  
  .section-three-5-block.right > img {
    margin-top: 1em;
    margin-left: -1em;
    width: 100%;
  }
}

.section-four {
  padding-top: 0;
}

.section-four-content {
  display: flex;
  flex-flow: column;
  gap: 5em;
  margin-left: 4em;
  margin-top: 6em;
}

.section-four-content h4 {
  margin-bottom: 2em;
}

.section-four-block {
  background-color: #0891B2;
  color: #fff;
  padding: 2em;
}

.section-four-block .number {
  position: absolute;
  background: url('../images/hexagon-white.svg');
  background-position: center;
  background-repeat: no-repeat;
  color: #0891B2;
  font-size: 1.2em;
  display: block;
  width: 10em;
  text-align: center;
  margin-top: -6.2em;
  margin-left: -6.7em;
  padding-top: 3em;
  padding-bottom: 3em;
}

.section-four-block .number h2 {
  font-size: 1.5em;
}

.section-four-block .list-header {
  background-color: #fff;
  color: #0891B2;
  display: inline;
  padding: .5em 1em .5em 1em;
}

.section-four-block > ul {
  margin-top: 1em;
  margin-bottom: 2em;
  list-style-type: none;
  padding-left: 1.5em;
}

.section-four-block > ul > li {
  position: relative;
  line-height: 2em;
}

.section-four-block > ul > li::before {
  content: "";
  display: block;
  float: left;
  width: .5em;
  height: 1em;
  background-color: #fff;
  margin-right: 1em;
  margin-top: .5em;
  margin-left: -1.5em;
}

@media (min-width:768px) {
  .section-four {
    padding-top: 3em;
  }


  .section-four-block {
    padding: 2em 5em 2em 5em;
  }
  
  .section-four-block .number {
    margin-top: -6.2em;
    margin-left: -9.2em;
    padding-top: 3em;
    padding-bottom: 3em;
  }
}

@media (min-width:992px) {


  .section-four-content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 6em 8em;
    padding: 2em 5em 2em 5em;
    margin-right: 8em;
    margin-top: 0;
  }
}

.section-five {
  position: relative;
  display: block;
  background: linear-gradient(#caf0fa, rgba(255, 255, 255, 0));
  margin-top: 120px;
  padding-top: 3em;
}

.section-five::before {
  content: "";
  background-color: #caf0fa;
  position: absolute;
  display: block;
  top: -10em;
  left: 0;
  width: 100%;
  height: 10em;
  mask-image: url(../images/section-bgmask-top.svg);
  mask-repeat: no-repeat;
  mask-mode: alpha;
  mask-size: 100%;
  mask-position: bottom;
}

.section-five::after {
  content: "";
  position: relative;
  display: block;
  background: url('../images/section-five-image.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 18em;
}

.section-five .section-heading {
  margin-top: -1.2em;
}

.section-five-content {
  display: flex;
  flex-flow: column;
  gap: 2em;
}

.section-five-block > img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 8em;
}

.section-five-block > h3 {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 1.5em;
}

@media (min-width:768px) {
  .section-five {
    margin-top: 12em;
    margin-bottom: 2em;
  }

  .section-five::before {
    top: -10em;
    height: 12em;
  }

  .section-five::after {
    position: absolute;
    right: 3em;
    top: -10em;
    z-index: 1;
    width: 30em;
  }

  .section-five .section-heading {
    margin-top: -.2em;
  }

  .section-five-content {
    display: grid;
    grid-template-columns: 20% 20% 20% 20%;
    gap: 3em;
    justify-content: center;
  }
}

.section-six {
  position: relative;
  padding-top: 1em;
}

.section-six::after {
  content: "";
  display: none;
  position: absolute;
  width: 10em;
  height: 10em;
  right: 0;
  top: 8em;
  background: url('../images/section-two-bg2.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.section-six .section-heading {
  margin-bottom: 1em;
}

.section-six-content {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 1em;
}

.section-six-block {
  display: inline-block;
  text-align: center;
  background-color: #F1F1F1;
}

.section-six-block.span-3 {
  grid-column: span 3;
}

.section-six-block .title {
  display: block;
  background-color: #0891B2;
  padding-top: .725em;
  padding-bottom: .725em;
  color: #fff;
}

.section-six-block .content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 1.5em 1em 1.5em;
  min-height: 8em;
}

@media (min-width:768px) {
  .section-six {
    padding-top: 4em;
  }

  .section-six .section-heading {
    margin-bottom: .25em;
  }

  

  .section-six-content {
    position: relative;
    display: grid;
    grid-template-columns: 30% 30% 30%;
    gap: 2em;
    justify-content: center;
    margin-left: 6em;
    margin-right: 6em;
  }
}

@media (min-width: 992px)  {
  .section-six::after {
    display: block;
  }
}

.section-seven {
  padding-top: 2em;
}

.section-seven .section-heading {
  margin-bottom: .25em;
}

.section-seven-background-image {
  content: "";
  display: block;
  height: 20em;
  margin-top: -4em;
  background: url('../images/section-seven-image.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative; /* Add this to position the pseudo-element */
}

.section-seven-background-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%; /* Adjust the height as needed */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
}

.section-seven-wrap {
  position: relative;
  width: 100%;
  padding-top: 10em;
  padding-bottom: 7em;
  overflow-x: auto;
  z-index: 1;
}

.section-seven-content {
  position: relative;
  display: grid;
  grid-template-columns: 30% 5% 30% 5% 30%;
  gap: 2em;
  justify-content: center;
  margin-left: 6em;
  margin-right: 6em;
  width: 62em;
}

.section-seven-content .divider {
  display: block;
  width: 2em;
  background: url('../images/section-seven-divider-arrows.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.section-seven-block {
  position: relative;
  background-color: #D9F0F6;
  display: flex;
  flex-flow: column;
  align-items: center;
  height: 30em;
  width: 18em;
  border-top: 1px solid #D9F0F6;
  border-bottom: 1px solid #D9F0F6;
}

.section-seven-block::before {
  content: "";
  position: absolute;
  top: -5em;
  left: 0;
  width: 0;
  height: 0;
  border-left: 9em solid transparent;
  border-right: 9em solid transparent;
  border-bottom: 5em solid #D9F0F6;
}

.section-seven-block::after {
  content: "";
  position: absolute;
  bottom: -5em;
  left: 0;
  width: 0;
  height: 0;
  border-left: 9em solid transparent;
  border-right: 9em solid transparent;
  border-top: 5em solid #D9F0F6;
}

.section-seven-block .title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.965em;
  height: 5em;
  background: #0891B2;
  position: relative;
  text-align: center;
  color: #fff;
  margin-top: -5.5em;
  border-top: 1px solid #0891B2;
  border-bottom: 1px solid #0891B2;
}

.section-seven-block .title::before {
  content: "";
  position: absolute;
  top: -3em;
  left: 0;
  width: 0;
  height: 0;
  border-left: 5em solid transparent;
  border-right: 5em solid transparent;
  border-bottom: 3em solid #0891B2;
}
.section-seven-block .title::after {
  content: "";
  position: absolute;
  bottom: -3em;
  left: 0;
  width: 0;
  height: 0;
  border-left: 5em solid transparent;
  border-right: 5em solid transparent;
  border-top: 3em solid #0891B2;
}

.section-seven-block .content {
  display: flex;
  flex-flow: column;
  gap: 1em;
  align-items: center;
  margin-top: 5em;
  padding-left: 4em;
  padding-right: 4em;
  text-align: center;
}

@media (min-width:768px) {
  .section-seven {
    padding-top: 4em;
  }

  .section-seven-wrap {
    padding-top: 10em;
    padding-bottom: 15em;
    overflow-x: hidden;
  }

  .section-seven-content {
    height: 20em;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .section-seven::after {
    margin-top: 1em;
  }
}

.section-eight {
  padding-top: 2em;
}

.section-eight .section-heading {
  margin-bottom: 2em;
}

.section-eight-content {
  display: flex;
  flex-flow: column-reverse;
  gap: 2em;
  padding-left: 1.2em;
  padding-right: 1.2em;
}

.section-eight-block .section-eight-block-inner {
  margin-bottom: 4em;
  padding-left: 4em;
}

.section-eight-block .section-eight-block-inner:last-child {
  margin-bottom: 0;
}

.section-eight-block-inner .title {
  position: relative;
  margin-top: .325em;
  margin-left: -.375em;
  margin-bottom: 0;
  color: #0891B2;
}

.section-eight-block-inner .title::before {
  content: "";
  position: absolute;
  display: block;
  background: url('../images/section-three-title-icon.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 3.5em;
  height: 3.5em;
  top: -.675em;
  left: -4.5em;
}

.section-eight-block-inner .title h3 {
  font-size: 1.375em!important;
}

.section-eight-block p {
  padding-top: 1em;
}

@media (min-width:768px) {
  .section-eight {
    padding-top: 4em;
  }

  .section-eight .section-heading {
    margin-bottom: .675em;
  }

  .section-eight-content {
    display: grid;
    grid-template-columns: 30% 60%;
    gap: 3em;
    padding-left: 2em;
    padding-right: 2em;
  }
}

.section-nine {
  padding-top: 2em;
}

.section-nine .section-heading {
  margin-bottom: .675em;
}

.section-nine-block {
  display: flex;
  flex-flow: column;
  gap: 1em;
  align-items: center;
  background-color: #D9F0F6;
  margin-bottom: 1em;
  padding: 1em;
}

.section-nine-block img {
  width: 4em;
  height: auto;
}

.section-nine-block h3 {
  color: #0891B2;
}

.section-nine-block .sub-block {
  display: flex;
  flex-flow: wrap;
  gap: 1em;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
}

.section-nine-block .sub-block span {
  padding-left: 1em;
  padding-right: 1em;
  padding-top: .25em;
  padding-bottom: .25em;
  flex: none;
}

.section-nine-block .sub-block .white {
  background-color: #fff;
}

.section-nine-block .sub-block .green {
  background-color: #0891B2;
  color: #fff;
}

.section-nine-block .sub-block h3 {
  padding-left: .5em;
  padding-right: 1em;
}

.section-nine-block ul {
  margin-top: 1em;
  margin-bottom: 2em;
  list-style-type: none;
  padding-left: 1.5em;
}

.section-nine-block ul > li {
  position: relative;
  line-height: 2.5em;
}

.section-nine-block ul > li::before {
  content: "";
  display: block;
  background: url('../images/bullet.svg') no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  margin-top: .75em;
  margin-left: -1.75em;
}

.section .scroll-info {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 1em 0;
}

.carousel-inner {
  background-color: #D9F0F6;
}

.section-nine-content .carousel-indicators {
  margin-bottom: -1.5em;
}

.section-nine-content .carousel-indicators > button {
  border: 1px solid #0891B2;
  border-radius: 1em;
  width: .5em;
  height: .5em;
}

.section-nine-content .carousel-indicators > button.active {
  background-color: #0891B2;
}

@media (min-width:768px) {
  .section-nine {
    padding-top: 4em;
  }

  .section-nine-block {
    flex-flow: row;
    padding: 2em;
    margin-bottom: 2em;
    align-items: start;
  }

  .section .scroll-info {
    display: none;
  }

  .section-nine-block img {
    width: 10em;
    height: auto;
  }

  .section-nine-content .carousel-inner {
    display: flex;
    flex-flow: column;
    gap: .5em;
    background-color: transparent;
  }

  .section-nine-content .carousel-inner .carousel-item {
    display: block!important;
  }

  .section-nine-content .carousel-indicators {
    display: none;
  }

  .section-nine-block .sub-block {
    flex-flow: row;
    gap: 0;
    flex-wrap: wrap;
  }
}

.section-ten .section-heading {
  margin-bottom: .375em;
}

.section-ten {
  position: relative;
  display: block;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(202, 240, 250, .1), #caf0fa);
  min-height: 60em;
  margin-bottom: 1em;
  border-bottom: 1px solid #caf0fa;
  padding-top: 4em;
}

.section-ten::after {
  content: "";
  background-color: #caf0fa;
  position: absolute;
  display: block;
  top: 100%;
  left: 0px;
  width: 100%;
  height: 12em;
  margin-top: -.5em;
  mask-image: url(../images/section-bgmask-bottom.svg);
  mask-repeat: no-repeat;
  mask-mode: alpha;
  mask-size: 100%;
}

.section-ten strong.highlight {
  font-size: 120%;
}

.section-ten-content {
  position: relative;
  display: grid;
  grid-template-columns: 40% 60%;
  width: 80%;
  gap: 1em;
  justify-content: center;
  margin-top: 6em;
}

.section-ten-content::before {
  content: "";
  display: none;
  position: absolute;
  width: 15em;
  height: 10em;
  right: -105px;
  top: 7em;
  background: url('../images/section-two-bg2.svg') no-repeat 50% 50%;
  background-size: contain;
}

.section-ten-content::after {
  content: "";
  display: none;
  position: absolute;
  bottom: 12em;
  left: -5em;
  width: 8em;
  height: 16em;
  background: url('../images/section-two-bg1.svg') no-repeat 50% 50%;
  background-size: contain;
}

.section-ten-content .step {
  color: #0891B2;
  text-align: center;
  font-weight: 700;
}

.section-ten-content .step img {
  width: 4em;
}

.section-ten-content .content {
  position: relative;
  margin-bottom: 4em;
}

/* .section-ten-content .content::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  border-left: 2px dotted #0891B2;
  top: 6em;
  left: -4.375em;
  bottom: -4em;
} */

.section-ten-content .content:last-child::before {
  display: none;
}

.section-ten-content .content-block {
  background-color: #fff;
  padding: 1em;
  margin-top: 1em;
  margin-right: -2.5em;
  box-shadow: 0px 2px 8px 0px #0891B233;
  border-radius: .5em;
}

@media (min-width:768px) {
  .section-ten {
    margin-bottom: 7em;
    padding-top: 2em;
  }

  .section-ten::after {
    margin-top: -1em;
  }

  .section-ten-content {
    grid-template-columns: max-content 50%;
    margin-left: auto;
    margin-right: auto;
  }

  .section-ten-content::before, .section-ten-content::after {
    display: block;
  }

/*   .section-ten-content .content::before {
    top: 8em;
    left: -4.125em;
    bottom: -4em;
  } */

  .section-ten-content .step img {
    width: 6em;
  }

  .section-ten-content .content-block {
    padding: 1.5em 2.5em 1.5em 2.5em;
    margin-top: 1em;
    margin-right: 0;
  }
}

.section-eleven {
  padding-top: 2em;
}

.section-eleven .section-heading {
  margin-bottom: .5em;
}

.section-eleven form {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  --bs-border-color: #0891B2;
  --bs-border-radius: 0;
}

.section-eleven form label.required::after {
  content: "*";
  color: red;
}

@media (min-width:768px) {
  .section-eleven {
    padding-top: 4em;
  }

  .section-eleven form {
    margin-left: 8em;
    margin-right: 8em;
    margin-top: 5em;
  }
}