/*! ============== Common and Global CSS Styles ================== */
/*! Reset CSS Style ------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font: inherit;
}
*, *::before, *::after {
  box-sizing: inherit;
}

html {
  max-width: 100%;
  box-sizing: border-box;
  scroll-behavior: initial;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  html {
    font-size: 85%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  html {
    font-size: 95%;
  }
}

body {
  max-width: 100%;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

body,
button,
h1, h2, h3, h4, h5, h6,
input,
nav,
select,
textarea,
ul, ol, dl {
  margin: 0;
  padding: 0;
}

a:hover,
button:hover,
input[type=submit]:hover {
  cursor: pointer;
}

a,
button,
input,
select,
textarea {
  background: none;
  color: inherit;
  border: none;
  text-transform: none;
  text-decoration: none;
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

ul {
  list-style: none;
  padding: 0;
}

/*! Custom Styles ------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

html, body {
  font-family: "Noto Sans JP", sans-serif !important;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: #4B5563;
  font-weight: 400;
}

a {
  cursor: pointer;
  transition: ease-in-out 0.4s;
  font-weight: 500;
}
a:hover {
  opacity: 0.7;
}

.text-underline {
  text-underline-offset: 4px;
  text-decoration-thickness: 1px !important;
}

.card__shadow--dark .card, .shadow {
  box-shadow: rgba(99, 99, 99, 0.11) 2px 3px 13px 4px;
}

.bg--light .shadow, .bg--light .card__shadow--dark .card {
  box-shadow: rgba(99, 99, 99, 0.04) 2px 3px 13px 2px !important;
}

.card__shadow--blue .card {
  box-shadow: 2px 4px 10px 2px rgba(45, 156, 219, 0.15);
}

.border {
  border: 1px solid #edeaea;
}

.hl-xs {
  width: 120px;
  height: 5px;
  background: #2D9CDB;
  margin: 0 auto;
}

.vl-sm {
  position: relative;
}
.vl-sm::after {
  background: #94D1EE;
  position: absolute;
  content: " ";
  width: 40px;
  height: 2px;
  left: 0;
  bottom: -7px;
}

.hl-center {
  display: flex;
  flex-direction: row;
  align-content: center;
}

.hl-left {
  display: flex;
  align-items: center;
}

.vl-center {
  display: flex;
  justify-content: center;
}

.vl-align-center {
  display: flex;
  align-items: center;
}

.img-fluid {
  max-width: 100%;
}

.img-cover {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-position: center center;
  object-fit: cover;
}

img {
  border-radius: inherit;
}

main {
  margin-top: 85px;
}

.section-content,
main {
  min-height: 50vh;
}

.text-underline {
  text-decoration: underline;
}

.rounded {
  border-radius: 16px;
}
.rounded-left {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.rounded-right {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
@media screen and (min-width: 768px) {
  .rounded-left {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    border-top-right-radius: 0;
  }
  .rounded-right {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 0;
  }
}

.card {
  background-color: #ffffff;
}

@media screen and (max-width: 767.98px) {
  .col-md-reverse .rounded-left {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .col-md-reverse .rounded-right {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media screen and (min-width: 768px) {
  .col-md-reverse {
    flex-direction: row-reverse !important;
  }
}

br {
  display: none;
}

@media screen and (min-width: 992px) {
  br {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
}
/*! Grid, Columns and Containers. ------------------------------------------------- */
.container,
.container-fluid,
.container-medium,
.container-fullwidth {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 576px) {
  .container,
  .container-fluid,
  .container-medium,
  .container-fullwidth {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.container-fluid {
  max-width: 1480px;
}

@media screen and (min-width: 576px) {
  .container-medium,
  .container {
    max-width: 95%;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 1280px;
  }
  .container-medium {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1200px) {
  .container-medium {
    max-width: 1200px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }
  .container-medium {
    max-width: 1280px;
  }
}
.gx-lg-5 {
  --bs-gutter-x: 5rem !important;
}

.gx-lg-4 {
  --bs-gutter-x: 3.5rem !important;
}

.pt-gutter {
  padding-top: 60px;
}

.py-gutter {
  padding: 60px 0;
}

.pt-md-gutter {
  padding-top: 40px;
}

.mt-gutter {
  margin-top: 60px;
}

.mt-md-gutter {
  margin-top: 40px;
}

.mt-sm-gutter {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .pt-gutter {
    padding-top: 90px;
  }
  .mt-gutter {
    margin-top: 90px;
  }
  .py-gutter {
    padding: 90px 0;
  }
  .pt-md-gutter {
    padding-top: 50px;
  }
  .mt-md-gutter {
    margin-top: 50px;
  }
}
@media screen and (min-width: 992px) {
  .pt-gutter {
    padding-top: 100px;
  }
  .mt-gutter {
    margin-top: 100px;
  }
  .py-gutter {
    padding: 100px 0;
  }
  .pt-md-gutter {
    padding-top: 60px;
  }
  .mt-md-gutter {
    margin-top: 60px;
  }
}
/*! Colors ------------------------------------------------- */
/* Block: background */
.bg--gradient-blue {
  background-image: linear-gradient(135deg, #2D9CDB 0%, #56CCF2 100%) !important;
}

.bg--blue {
  background: #2D9CDB !important;
}

.bg--darknavy {
  background: #0D2E5B !important;
}

.bg--white {
  background-color: #ffffff !important;
}

.bg--light {
  background-color: #f7f8f9 !important;
}

.bg--lightest-blue {
  background-color: #E6F4FB !important;
}

.bg--royalblue {
  background-color: rgba(37, 99, 235, 0.1) !important;
}

.bg--green {
  background-color: rgba(11, 159, 66, 0.1) !important;
}

.bg--lightgray {
  background-color: rgba(13, 46, 91, 0.05) !important;
}

.bg--gradient-darknavy {
  background: linear-gradient(to bottom right, #0D2E5B 0%, #1E4D8C 50%, #0A2348 100%);
}

/* Block: text */
.text--white {
  color: #ffffff !important;
}

.text--blue {
  color: #2D9CDB !important;
}

.text--royalblue {
  color: #2563EB !important;
}

.text--green {
  color: #0B9F42 !important;
}

.text--darknavy {
  color: #0D2E5B !important;
}

.text--darkgray {
  color: #111827 !important;
}

.text--semigray {
  color: #6B7280 !important;
}

/* Icons */
.icon__fill--blue svg path {
  fill: #2D9CDB !important;
}

.icon__stroke--blue svg,
.icon__stroke--blue svg path {
  stroke: #2D9CDB !important;
}

.icon__stroke--white svg,
.icon__stroke--white svg path {
  stroke: #ffffff !important;
}

.icon__stroke--royalblue svg {
  stroke: #2563EB !important;
}

.icon__stroke--green svg {
  stroke: #0B9F42 !important;
}

.icon__stroke--default svg,
.icon__stroke--default svg path {
  stroke: #4B5563 !important;
}

.icon__stroke--darknavy svg,
.icon__stroke--darknavy svg path {
  stroke: #0D2E5B !important;
}

.icon__stroke--semigray svg,
.icon__stroke--semigray svg path {
  stroke: #6B7280 !important;
}

/* Border Colors */
.border--light {
  border-color: rgba(255, 255, 255, 0.3294117647) !important;
}

.arrow--darknavy {
  border-top: 2px solid #0D2E5B !important;
  border-right: 2px solid #0D2E5B !important;
}

/*! Typography Sizes and Weight ------------------------------------------------- */
.fw-light {
  font-weight: 300 !important;
}

.fw-regular {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-extrabold {
  font-weight: 800 !important;
}

h1, h2, h3, h4 {
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.fs-italic {
  font-style: italic;
}

.fs1 {
  font-size: 20px;
}

.fs2 {
  font-size: 18px;
}

.fs3, .fs4, .fs5 {
  font-size: 16px;
}

small,
.fs6 {
  font-size: 14px;
}

@media screen and (min-width: 576px) {
  .fs2 {
    font-size: 20px;
  }
  .fs3 {
    font-size: 18px;
  }
}
@media screen and (min-width: 992px) {
  .fs1 {
    font-size: 24px;
  }
  .fs2 {
    font-size: 22px;
  }
  .fs3 {
    font-size: 20px;
  }
  .fs4 {
    font-size: 18px;
  }
  .fs5 {
    font-size: 16px;
  }
  .fs6 {
    font-size: 14px;
  }
}
h1, .title--xxl {
  font-size: 2rem !important;
}

h2, .title--xl {
  font-size: 28px;
}

h3, .title--lg {
  font-size: 24px;
}

h4, .title--md,
h5, .title--sm {
  font-size: 20px;
}

h6, .title--xs {
  font-size: 18px;
}

@media screen and (min-width: 576px) {
  .title--xxl {
    font-size: 7vw !important;
  }
  h4, .title--md,
  h5, .title--sm {
    font-size: 22px;
  }
  h6, .title--xs {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  h1, .title--xxl {
    font-size: 5vw !important;
  }
  h2, .title--xl {
    font-size: 34px;
  }
  .keyvisual h2 {
    font-size: 38px !important;
  }
  h3, .title--lg {
    font-size: 28px;
  }
}
@media screen and (min-width: 992px) {
  h1, .title--xxl {
    font-size: calc(3.375rem + 0.3vw) !important;
  }
  h4, .title--md {
    font-size: 24px;
  }
  h5, .title--sm {
    font-size: 22px;
  }
  h6, .title--xs {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  h2, .title--xl {
    font-size: 38px;
  }
  .keyvisual h2 {
    font-size: 48px !important;
  }
}
/*! Animations and Keyframes ------------------------------------------------- */
.anim {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.anim-half {
  animation-delay: 0.5s;
}

.anim-one {
  animation-delay: 1s;
}

.anim-one-half {
  animation-delay: 1.1s;
}

.anim-two {
  animation-delay: 1.5s;
}

.anim-three-1 {
  animation-delay: 1.8s;
}

.anim-three-2 {
  animation-delay: 1.9s;
}

.anim-three-3 {
  animation-delay: 2s;
}

.anim-fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.anim-fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    overflow: hidden;
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoom {
  from {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 #2D9CDB;
  }
  70% {
    box-shadow: 0 0 0 9px rgba(45, 156, 219, 0);
  }
  100% {
    box-shadow: 0 0 rgba(45, 156, 219, 0);
  }
}
@keyframes bounce-light {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
/*! Header Navigation Style  ------------------------------------------------- */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  margin: 0 auto;
  height: 85px;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  z-index: 10;
  box-shadow: rgba(17, 24, 39, 0.09) 0px 2px 0px -1px;
}
.header__nav--overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  inset: 0;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease-in-out;
}
.header.is-active {
  overflow: visible;
}
.header .nav__logo {
  display: flex;
  align-items: center;
  line-height: 0;
}
.header .nav__logo img {
  width: 150px;
}
.header .nav__item--button {
  margin-left: 25px;
}
.header .nav__item--button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 50px;
  color: #111827;
  color: #ffffff;
}
.header .nav__item--button a .icon__arrow--right {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.header .nav__item--button .icon {
  display: flex;
  align-items: center;
}
.header .nav__item--button .icon svg {
  width: 18px;
  height: 18px;
}
.header .nav__item a {
  color: #111827;
}
.header .nav__link:hover {
  opacity: 1;
  color: #2D9CDB !important;
}
.header .nav__container {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 991.98px) {
  .header .nav__toggle {
    width: 60px;
    height: 60px;
    position: relative;
    background: #E6F4FB;
    cursor: pointer;
    border-radius: 5px;
    border-radius: 100%;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
  .header .nav__toggle span {
    display: inline-block;
    width: 45%;
    height: 3px;
    border-radius: 2px;
    background: #2D9CDB;
    transition: all 0.4s;
    margin-top: 5px;
  }
  .header .nav__toggle span:nth-of-type(1) {
    margin-top: 0;
  }
  .header .nav__toggle--closed {
    width: 45px;
    height: 45px;
  }
  .header .nav__toggle--closed span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
  }
  .header .nav__toggle--closed span:nth-of-type(2) {
    opacity: 0;
  }
  .header .nav__toggle--closed span:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }
  .header .nav__menu {
    position: absolute;
    top: 0;
    right: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 350px;
    height: 100vh;
    background: #ffffff;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 5px 0;
    align-content: start;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    transition: transform 0.3s ease;
    transform: translate(calc(100% + 50px), 0);
    visibility: hidden;
    opacity: 0;
    z-index: 5;
    /* Side Navigation Scrollbar Styling */
  }
  .header .nav__menu.is-active {
    transform: translate(0, 0);
    visibility: visible;
    opacity: 1;
  }
  .header .nav__menu.closed {
    transform: translate(calc(100% + 50px), 0);
  }
  .header .nav__menu hr {
    border-color: rgba(255, 255, 255, 0.51);
  }
  .header .nav__menu .icon {
    margin-right: 10px;
  }
  .header .nav__menu .icon--circle {
    background-color: #E6F4FB !important;
    width: 50px;
    height: 50px;
  }
  .header .nav__menu .icon--circle svg {
    width: 25px;
    height: 25px;
    stroke: #2D9CDB !important;
  }
  .header .nav__menu::-webkit-scrollbar {
    width: 5px;
  }
  .header .nav__menu::-webkit-scrollbar-track {
    background-color: #ffffff;
  }
  .header .nav__menu::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(107, 114, 128, 0.3);
  }
  .header .nav__menu.closed {
    transform: translate(calc(100% + 50px), 0);
  }
  .header .nav__header {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 14px 20px 8px 20px;
  }
  .header .nav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 20px;
  }
  .header .nav__item {
    display: flex;
    align-items: center;
    margin: 20px 0 0 0;
    position: relative;
    width: 100%;
  }
  .header .nav__item:nth-child(1) {
    margin: 0;
  }
  .header .nav__item--button {
    margin: 25px 0 0 0;
    width: 100%;
  }
  .header .nav__item--button a {
    width: inherit;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 16px;
  }
  .header .nav__item::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #2D9CDB;
    border-right: 2px solid #2D9CDB;
    transform: rotate(45deg);
    left: 95%;
    right: 0;
    top: 50%;
  }
  .header .nav__item .nav__link {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .header .nav__footer {
    padding: 30px 20px 90px 20px;
  }
  .header .nav__footer small, .header .nav__footer h3 {
    font-size: 16px;
  }
  .header .nav__footer .icon svg {
    width: 22px;
    height: 22px;
  }
}
@media screen and (max-width: 400px) {
  .header .nav__menu {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .header .nav__toggle, .header .nav__header, .header .nav__item .icon, .header .nav__footer, .header .nav__overlay, .header hr {
    display: none;
  }
  .header .nav__list {
    align-items: center;
  }
  .header .nav__item {
    margin: 0 0 0 35px;
  }
}

@media screen and (max-width: 991.98px) {
  body.overflow-hidden .header__nav--overlay {
    opacity: 1;
  }
}
/*! Breadcrumbs Style  ------------------------------------------------- */
.breadcrumbs {
  border: 1px solid #f1f4f6;
}
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 5px;
}
.breadcrumbs ul li {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 21px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  display: inline-block;
  vertical-align: middle;
}
.breadcrumbs ul li:last-child {
  padding-right: 0;
}
.breadcrumbs ul li .current {
  color: #2D9CDB;
  font-weight: 600;
}
.breadcrumbs ul li a {
  display: flex;
  align-items: center;
  position: relative;
  color: rgba(75, 85, 99, 0.8);
}
.breadcrumbs ul li a::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  margin: 0 6px 0 9px;
  border-top: 2px solid rgba(75, 85, 99, 0.5);
  border-right: 2px solid rgba(75, 85, 99, 0.5);
  transform: rotate(45deg);
  left: 102%;
  right: 0;
  top: 40%;
}
.breadcrumbs ul li a:hover {
  color: #2D9CDB;
}
.breadcrumbs ul li a:hover .icon svg, .breadcrumbs ul li a:hover .icon path {
  stroke: #2D9CDB !important;
}
.breadcrumbs ul li a .icon {
  margin-right: 5px;
}
.breadcrumbs ul li a .icon svg {
  transition: ease-in-out 0.4s;
  width: 16px;
  height: 16px;
  stroke: rgba(75, 85, 99, 0.8) !important;
}
.breadcrumbs ul li a .icon path {
  transition: ease-in-out 0.4s;
  stroke: rgba(75, 85, 99, 0.8) !important;
}
@media screen and (min-width: 768px) {
  .breadcrumbs ul li {
    max-width: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .breadcrumbs ul li {
    max-width: 500px;
  }
}

/*! Contact Section Style  ------------------------------------------------- */
.contact__inner {
  padding: 40px 30px;
}
.contact__inner .card__shadow--dark .card {
  box-shadow: rgba(99, 99, 99, 0.11) 1px 3px 11px 3px !important;
}
.contact .card {
  padding: 30px;
}
.contact .card__group {
  gap: 1em;
}
.contact .col__group .col {
  display: flex;
}
.contact .col__group .col p {
  word-break: break-word;
}
.contact hr {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding: 40px;
  }
  .contact .card {
    padding: 30px;
    width: 33.33%;
  }
  .contact .card__group {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

/*! Page to top Style  ------------------------------------------------- */
#page-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2D9CDB;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: fixed;
  right: 15px;
  bottom: 20px;
  border: 2px solid transparent;
  opacity: 0;
  visibility: hidden;
  z-index: 4;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
}
@media screen and (min-width: 768px) {
  #page-top {
    right: 25px;
    bottom: 25px;
  }
}
#page-top svg {
  color: #ffffff;
  width: 24px;
  height: 24px;
}
#page-top.show {
  opacity: 1;
  visibility: visible;
}
#page-top:hover, #page-top:active {
  background-color: #1f7fb6;
  cursor: pointer;
}
#page-top::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 58px;
  height: 58px;
  border: 2px solid #2D9CDB;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}
#page-top.active-ring::after {
  opacity: 1;
}

/*! Footer Style  ------------------------------------------------- */
.footer {
  padding-top: 80px;
}
.footer .company__text ul li {
  margin-top: 5px;
}
.footer .company__text .icon {
  margin-right: 10px;
}
.footer .logo__img {
  width: 150px;
}
.footer .nav__list ul li {
  margin-top: 14px;
}
.footer hr {
  border-color: rgba(255, 255, 255, 0.168627451);
}
.footer__copyright--group {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (max-width: 767.98px) {
  .footer .nav__toggle::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
    left: 95%;
    right: 0;
    top: 50%;
    background: unset;
    transform-style: preserve-3d;
    transition: 0.2s;
  }
  .footer .nav__dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }
  .footer .is-active .nav__toggle::after {
    transform: rotate(315deg);
  }
  .footer .is-active .nav__dropdown-content {
    max-height: 500px;
  }
}
@media screen and (min-width: 768px) {
  .footer__copyright--group {
    flex-direction: row;
  }
  .footer .nav__list--two {
    padding-left: 40px;
    padding-right: 0;
  }
  .footer .nav__list--three {
    padding-left: 50px;
  }
}
@media screen and (min-width: 992px) {
  .footer .nav__list--two {
    padding-left: 55px;
  }
}

/*! Title Styles ------------------------------------------------- */
.title__inner {
  text-align: center;
}
.title__inner .title__head {
  color: #2D9CDB;
  padding-bottom: 12px;
}
.title__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.title__icon--circle {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  margin-bottom: 15px;
  background-color: #E6F4FB;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title__icon .title__head {
  color: #2D9CDB;
  padding-bottom: 12px;
}
.title__icon--circle .icon--wrench, .title__icon--circle .icon--car {
  margin-top: 10px;
}
.title__icon--circle .icon--car svg {
  width: 40px;
  height: 40px;
}
.icon {
  display: inline-flex;
  align-items: center;
}
.icon svg {
  stroke-width: 2px;
}
.icon--xxs svg {
  width: 15px;
  height: 15px;
}
.icon--xxs .icon__arrow--right {
  width: 6px;
  height: 6px;
}
.icon--xxs.icon--circle {
  width: 20px;
  height: 20px;
}
.icon--xs.icon--circle {
  width: 50px;
  height: 50px;
}
.icon--xs.icon--circle svg {
  width: 26px;
  height: 26px;
}
.icon--xs svg {
  width: 20px;
  height: 20px;
}
.icon--xs .icon__arrow--right {
  width: 8px;
  height: 8px;
}
.icon--sm.icon--circle {
  width: 60px;
  height: 60px;
}
.icon--sm svg {
  width: 30px;
  height: 30px;
}
.icon__custom--arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.icon__arrow--right {
  width: 5px;
  height: 5px;
  border-top: 2px solid #2D9CDB;
  border-right: 2px solid #2D9CDB;
  transform: rotate(45deg);
}
.icon--md {
  display: inline-block;
}
.icon--md svg {
  width: 35px;
  height: 35px;
}
.icon--lg {
  display: flex;
}
.icon--lg svg {
  width: 45px;
  height: 45px;
}
.icon--blue svg {
  stroke: #2D9CDB;
}
.icon--circle {
  background-color: #eaf6fd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon__check {
  border: 2px solid;
  border-color: #2D9CDB;
  background-color: unset;
}
.icon__check svg {
  width: 30px;
  height: 30px;
}

.text__link--arrow {
  display: flex;
  align-items: center;
}

/*! Keyvisual Style  ------------------------------------------------- */
.keyvisual {
  position: relative;
  overflow: hidden;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.keyvisual .pattern__wave {
  overflow: hidden;
  position: absolute;
  inset: 0;
}
.keyvisual .pattern__wave svg {
  position: absolute;
  width: 100%;
  display: block;
  vertical-align: middle;
}
.keyvisual .pattern__wave svg path {
  fill: rgba(17, 24, 39, 0.7);
}
.keyvisual .pattern__wave svg:nth-child(1) {
  bottom: 0;
  left: 0px;
}
.keyvisual .pattern__wave svg:nth-child(2) {
  top: -20px;
  right: 0px;
  transform: scaleX(-1) scaleY(-1);
}
.keyvisual .overlay {
  position: absolute;
}
.keyvisual .overlay-1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0px;
  background-image: linear-gradient(to top right, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
}
.keyvisual .overlay-2 {
  top: 0px;
  right: 0px;
  width: 25%;
  height: 66.666667%;
  border-radius: 9999px;
}
.keyvisual .overlay-3 {
  bottom: 0px;
  left: 0px;
  width: 33.333333%;
  height: 50%;
  border-radius: 9999px;
}
.keyvisual__text {
  z-index: 1;
}
.keyvisual .title__inner .title__head,
.keyvisual .title__inner .title__desc {
  color: #ffffff;
}
@media screen and (max-width: 991.98px) {
  .keyvisual .pattern__wave svg:nth-child(1) {
    bottom: 4px;
    left: -50%;
  }
  .keyvisual .pattern__wave svg:nth-child(2) {
    top: -50px;
    right: -50%;
  }
}
@media screen and (max-width: 1399.98px) {
  .keyvisual .pattern__wave svg {
    height: auto;
    width: 1520px;
  }
  .keyvisual .pattern__wave svg:nth-child(1) {
    bottom: 4px;
  }
  .keyvisual .pattern__wave svg:nth-child(2) {
    top: -30px;
  }
}
@media screen and (min-width: 992px) {
  .keyvisual {
    height: 380px;
  }
}
@media screen and (min-width: 1600px) {
  .keyvisual .pattern__wave svg:nth-child(2) {
    top: -20%;
  }
}

/*! Colunm Styles  ------------------------------------------------- */
.col__two-equal .col__image .image__inner {
  aspect-ratio: 3/2.8;
  max-width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .col__two-equal .col__image .image__inner {
    aspect-ratio: 4.5/3.5;
    height: 500px;
    margin: auto;
  }
}
@media screen and (min-width: 992px) {
  .col__two-equal .col__image .image__inner {
    aspect-ratio: 3/2.9;
    height: auto;
  }
}

.grid__two-equal {
  display: grid;
}
@media screen and (min-width: 992px) {
  .grid__two-equal {
    grid-template-columns: 1fr 1fr;
  }
}
.grid__image {
  width: 100%;
  height: 100%;
}

.card__box--radius {
  padding: 10px 8px;
  border-radius: 8px;
}

.list__gap--md li {
  margin-top: 14px !important;
}
.list__items li {
  margin-top: 8px;
}
.list__items li:nth-child(1) {
  margin-top: 0 !important;
}
.list__items--center li {
  align-items: center !important;
}
.list__items--disc {
  margin-left: 20px;
}
.list__items--disc li {
  list-style: disc;
  margin-top: 8px;
}
.list__items--disc li:nth-child(1) {
  margin-top: 0 !important;
}
.list__items--arrow li, .list__items--icon li {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
}
.list__items--arrow li:nth-child(1), .list__items--icon li:nth-child(1) {
  margin-top: 0 !important;
}
.list__items--arrow li i, .list__items--icon li i {
  margin-right: 10px;
  margin-top: 4px;
}
.list__items--arrow.arrow-circle li i {
  margin-top: 4px;
  margin-right: 10px;
}
.list__items--arrow li i {
  margin-top: 10px;
  margin-right: 14px;
}
.list__items--arrow li i.icon--xs .icon__arrow--right {
  width: 7px;
  width: 7px;
}
.list__items--arrow li span {
  width: calc(100% - 50px);
}
.list__icon--center li {
  align-items: center !important;
}
.list__icon--center .icon {
  margin-top: 0 !important;
}

.timeline--inline .timeline__body h5::before, .timeline__item::before {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #2D9CDB;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  left: 0%;
  top: 0;
  transform: translateX(-10px);
  z-index: 1;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.timeline__item, .timeline--inline .timeline__body, .timeline--inline .timeline__inner, .timeline--inline .timeline__item {
  display: inline-flex;
}

.timeline--inline .timeline__body, .timeline--inline .timeline__inner, .timeline--inline .timeline__item {
  flex-direction: column;
}

.timeline__inner {
  position: relative;
  counter-reset: card;
}
.timeline__inner::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  top: 0;
  left: 22px;
  margin-left: -1px;
  background: rgba(148, 209, 238, 0.3);
}
.timeline__item {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  counter-increment: card;
  justify-content: flex-end;
}
.timeline__item::before {
  content: counter(card);
}
.timeline__item:last-child {
  margin-bottom: 0;
}
.timeline__item .card {
  width: calc(100% - 50px) !important;
  box-shadow: rgba(99, 99, 99, 0.04) 2px 3px 13px 2px !important;
  border: 1px solid #f1f4f6;
}
.timeline__half {
  width: 50%;
}
.timeline--inline .timeline__item {
  margin-bottom: 60px;
}
.timeline--inline .timeline__inner {
  align-items: flex-end;
  counter-reset: item !important;
}
.timeline--inline .timeline__inner :last-child {
  margin-bottom: 0;
}
.timeline--inline .timeline__body h5 {
  position: relative;
  counter-increment: item;
}
.timeline--inline .timeline__body h5::before {
  content: none !important;
  width: 35px;
  height: 35px;
  left: -43px;
}
@media screen and (max-width: 767.98px) {
  .timeline--inline .timeline__body {
    padding-left: 50px;
  }
}
@media screen and (min-width: 768px) {
  .timeline__inner::after {
    left: 50%;
  }
  .timeline__item {
    margin-bottom: 40px;
  }
  .timeline__item:nth-child(odd) {
    justify-content: flex-start;
  }
  .timeline__item::before {
    top: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .timeline__item .card--sm,
  .timeline__item .card {
    width: 46% !important;
  }
  .timeline--inline .timeline__inner, .timeline--inline .timeline__item, .timeline--inline .timeline__body {
    align-items: center;
  }
  .timeline--inline .timeline__item::before {
    content: none !important;
  }
  .timeline--inline .timeline__body h5::before {
    content: counter(item) !important;
  }
}
@media screen and (min-width: 992px) {
  .timeline__item .card--sm {
    width: 36% !important;
    margin-right: 10%;
  }
}

/*! Card Styles  ------------------------------------------------- */
.card--fluid {
  width: 100%;
}

.card {
  padding: 30px 25px;
  border-radius: 15px;
  width: 100%;
  background-color: #ffffff;
}
.card--whole .card {
  width: 100% !important;
}
.card__flex-start {
  justify-content: flex-start !important;
}
.card__image-text .card {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}
.card__image-text .card__image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}
.card__group {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  gap: 2.4rem;
  padding: 0;
}
.card__group.custom-height {
  min-height: 350px;
}
.card__group.card__mini {
  gap: 1rem;
}
.card__group.card--space-between .card {
  display: inline-flex;
  align-content: space-between;
  flex-direction: column;
  justify-content: space-between;
}
.card .image__circle {
  display: flex;
  align-items: center;
}
.card .image__circle img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  margin-right: 15px;
}
.card__icon {
  display: flex;
  flex-direction: column;
}
.card__icon--partial {
  position: relative;
  width: 95px;
  height: 95px;
  margin-bottom: 30px;
  border-radius: 50px;
  background-color: #E6F4FB;
}
.card__icon.align-items-center .card__title {
  text-align: center;
}
.card__icon.align-items-end .card__title {
  text-align: right;
}
.card__icon-title {
  display: flex;
  align-items: center;
}
.card__icon-title .icon {
  margin-right: 15px;
}
.card__icon-svg {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  background-color: #ffffff;
}
.card__list li {
  margin: 8px 0;
}
.card__list--disc {
  margin-left: 20px;
}
.card__list--disc li {
  list-style: disc;
}
.card__list--arrow li {
  display: flex;
  align-items: center;
  margin: 12px 0 !important;
}
@media screen and (min-width: 768px) {
  .card__group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .card__group .card {
    width: 48.5%;
  }
  .card__group.no-gap {
    gap: 0 !important;
  }
  .card__group.no-gap.card--two-col .card {
    width: 50%;
  }
  .card__group.no-gap .card {
    border-radius: 0;
  }
  .card__group.no-gap .card:first-child {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
  .card__group.no-gap .card:last-child {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  .card__image-text .card__image img {
    height: 320px;
  }
}
@media screen and (min-width: 992px) {
  .card__mini {
    gap: 12px !important;
  }
  .card--one-col .card {
    width: 100%;
  }
  .card--two-col .card {
    width: 48.6%;
  }
  .card--three-col .card, .card--four-col .card {
    width: 31.5%;
  }
  .card__group.no-gap .card--two-col .card {
    width: 50% !important;
  }
  .card__group.no-gap .card--three-col .card, .card__group.no-gap .card--four-col .card {
    width: 33.33% !important;
  }
}
@media screen and (min-width: 1400px) {
  .card {
    padding: 30px;
  }
  .card__group {
    gap: 2rem;
  }
  .card__group.card--four-col {
    gap: 1.2rem;
  }
  .card--four-col .card {
    width: 23.5%;
  }
}

@media screen and (min-width: 992px) {
  .container-medium .card--two-col .card {
    width: 48.5%;
  }
  .container-medium .card--three-col .card, .container-medium .card--four-col .card {
    width: 31.3%;
  }
}
@media screen and (min-width: 1400px) {
  .container-medium .card {
    padding: 30px;
  }
  .container-medium .card__group {
    gap: 2rem;
  }
  .container-medium .card__group.card--four-col {
    gap: 1.2rem;
  }
  .container-medium .card--four-col .card {
    width: 23.5%;
  }
}

/*! CTA Styles  ------------------------------------------------- */
.cta {
  display: flex;
  flex-direction: column;
}
.cta__whole .cta__text {
  width: 100%;
  z-index: 2;
  border: 0;
  margin-top: 0;
}
.cta__img {
  width: 100%;
  overflow: hidden;
}
.cta__img img {
  transition: ease-in-out 0.6s;
  width: 100%;
  height: 350px;
  border-radius: inherit;
  object-position: center center;
  object-fit: cover;
}
.cta__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 30px;
  border: 1px solid rgba(45, 156, 219, 0.2);
}
@media screen and (max-width: 767.98px) {
  .cta__text {
    margin-top: -7px;
  }
}
@media screen and (min-width: 576px) {
  .cta__img img {
    height: 380px;
  }
}
@media screen and (min-width: 768px) {
  .cta {
    height: 220px;
    flex-direction: row;
  }
  .cta__img {
    width: 40%;
  }
  .cta__img img {
    height: 100%;
  }
  .cta__text {
    width: 60%;
  }
}

/*! Icon Styles  ------------------------------------------------- */
.icon__arrow--right, .icon__arrow--left {
  width: 5px;
  height: 5px;
  border-top: 2px solid #2D9CDB;
  border-right: 2px solid #2D9CDB;
}

.icon__custom--arrow, .icon {
  display: inline-flex;
  align-items: center;
}

.icon svg {
  stroke-width: 2px;
}
.icon--xxs svg {
  width: 15px;
  height: 15px;
}
.icon--xxs .icon__arrow--right {
  width: 6px;
  height: 6px;
}
.icon--xxs.icon--circle {
  width: 20px;
  height: 20px;
}
.icon--xs.icon--circle {
  width: 50px;
  height: 50px;
}
.icon--xs.icon--circle svg {
  width: 26px;
  height: 26px;
}
.icon--xs svg {
  width: 20px;
  height: 20px;
}
.icon--xs .icon__arrow--right {
  width: 8px;
  height: 8px;
}
.icon--xs .icon__arrow--left {
  width: 8px;
  height: 8px;
}
.icon--sm.icon--circle {
  width: 60px;
  height: 60px;
}
.icon--sm.icon--car svg {
  width: 34px;
  height: 34px;
}
.icon--sm svg {
  width: 30px;
  height: 30px;
}
.icon__custom--arrow {
  justify-content: center;
  margin-right: 10px;
}
.icon__arrow--left {
  transform: rotate(225deg);
}
.icon__arrow--right {
  transform: rotate(45deg);
}
.icon--md {
  display: inline-block;
}
.icon--md svg {
  width: 35px;
  height: 35px;
}
.icon--lg {
  display: flex;
}
.icon--lg svg {
  width: 45px;
  height: 45px;
}
.icon--blue svg {
  stroke: #2D9CDB;
}
.icon--circle {
  background-color: #eaf6fd;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon__check {
  border: 2px solid;
  border-color: #2D9CDB;
  background-color: unset;
}
.icon__check svg {
  width: 30px;
  height: 30px;
}

/*! Button Styles  ------------------------------------------------- */
.news__wrap:hover .link__text .icon--right,
.up-hover:hover .link__text .icon--right, .link__text--arrow:hover .icon--right, .nav__button:hover .icon--right, .button:hover .icon--right {
  transform: translateX(3px);
}

.news__wrap:hover .link__text .link__label,
.up-hover:hover .link__text .link__label, .link__text--arrow:hover .link__label, .nav__button:hover .text__w-icon, .button:hover .button__label {
  transform: translateX(2px);
}

.link__text, .button {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  opacity: 1 !important;
}

.news__wrap:hover .link__text .link__label::after,
.up-hover:hover .link__text .link__label::after, .link--arrow-left:hover .link__label::after, .news__wrap:hover .link__text .link__label::before,
.up-hover:hover .link__text .link__label::before, .link--arrow-left:hover .link__label::before {
  width: 100%;
  opacity: 1;
}

.button--solid {
  box-shadow: 0 0 0 0 rgba(45, 156, 219, 0.5);
  animation: pulse 2s infinite;
  -webkit-animation: pulse 2s infinite;
}

.link__text--arrow:hover .icon--calendar, .link__text--arrow:hover .icon--mail, .button.no-transform .button__label, .button.no-transform .icon {
  transform: none !important;
}

a:hover .icon--top {
  transform: translateY(-2.5px);
}

.nav__toggle,
a {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  outline: none;
}

.text__w-icon,
.button__label, .link__label, .link__label::before,
.icon, .icon span, .icon svg, .icon path, .news__wrap,
.up-hover {
  transition: all 0.4s ease-in-out;
}

.icon {
  transition-duration: 0.2s;
}

a:active, a:focus {
  background: transparent;
}

.button {
  justify-content: center;
  padding: 10px 16px 10px 16px;
  border-radius: 5px;
  background: #2D9CDB;
  color: #ffffff;
}
.button__label {
  font-size: 16px;
  font-weight: 500;
}
.button .icon__arrow--right {
  border-color: inherit !important;
}
.button--outline {
  background: none;
  border: 2px solid #2D9CDB;
  color: #2D9CDB !important;
}
.button--outline:hover {
  background: rgb(37, 135, 190) !important;
  color: #ffffff !important;
}
.button--outline:hover .icon--left {
  transform: none;
}
.button--outline:hover .icon svg, .button--outline:hover .icon path {
  stroke: #ffffff !important;
}
.button--outline .icon__arrow--right {
  border-color: inherit !important;
}
.button--solid {
  border: 2px solid #2D9CDB;
}
.button--solid:hover {
  background: rgb(37, 135, 190) !important;
}
.button--solid svg path {
  stroke: inherit;
}
.button--accent {
  background: #F2994A;
  padding: 10px 15px;
  border-radius: 50px;
}
.button--accent:hover {
  background: #e2832f !important;
}
@media screen and (max-width: 375px) {
  .button {
    width: 100% !important;
    min-width: 100% !important;
  }
}
@media screen and (min-width: 320px) {
  .button {
    min-width: 220px;
  }
  .button--accent {
    min-width: 280px !important;
  }
  .button--small {
    min-width: 150px;
  }
}
@media screen and (min-width: 576px) {
  .button {
    min-width: 240px;
  }
}

@media screen and (min-width: 992px) {
  .nav__button {
    box-shadow: 0 0 0 0 rgba(45, 156, 219, 0.5);
    animation: pulse 2s infinite;
    -webkit-animation: pulse 2s infinite;
  }
}

.link--arrow-left .link__label::before {
  left: unset;
  right: 0;
}
.link--arrow-left:hover .link__label {
  transform: translateX(-2px);
}
.link--arrow-left:hover .icon {
  transform: translateX(-4px);
}
.link__text {
  align-items: center;
}
.link__color:hover .link__label::before {
  visibility: hidden;
  opacity: 0;
}
.link__color:hover .link__label.text--blue {
  color: #0D2E5B !important;
}
.link__color:hover .link__label.text--blue svg, .link__color:hover .link__label.text--blue path {
  color: #111827 !important;
}
.link__color:hover .link__label.text--darknavy {
  color: #2D9CDB !important;
}
.link__color:hover .link__label.text--darknavy svg, .link__color:hover .link__label.text--darknavy path {
  stroke: #2D9CDB !important;
}
.link__color:hover .icon .arrow--darknavy {
  border-color: #2D9CDB !important;
}
.link__color:hover .icon__custom--arrow span {
  border-color: #0D2E5B !important;
}
.link__text--arrow:hover .link__label::after, .link__text--arrow:hover .link__label::before {
  width: 100%;
  opacity: 1;
}
.link__label {
  position: relative;
}
.link__label::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0px;
  height: 1.5px;
  margin: 5px 0 0;
  transition-duration: 0.4s;
  opacity: 0;
  background-color: #2D9CDB;
}
.link__label.text--darknavy::before {
  background-color: #0D2E5B;
}

.cta__link .link__label::before {
  background-color: rgba(45, 156, 219, 0.2) !important;
}

.news__wrap:hover,
.up-hover:hover {
  transform: translateY(-0.25rem);
}
.news__wrap:hover img,
.up-hover:hover img {
  transform: scale(1.05);
}

.up-hover .card__icon--partial::after {
  position: absolute;
  background: #cde7f4;
  width: 105%;
  height: 105%;
  content: "";
  border-radius: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.up-hover:hover .card__icon--partial {
  background-color: #cde7f4;
}
.up-hover:hover .card__icon--partial::after {
  opacity: 1;
  visibility: visible;
}

.up-hover--shadow:hover {
  box-shadow: rgba(99, 99, 99, 0.11) 2px 3px 13px 4px;
}

@media screen and (max-width: 575.5px) {
  .button__label,
  .link__label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    display: inline-block;
    font-size: 14px;
  }
}
