<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

@import url(https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&amp;display=swap);


:root {
  
  --font-primary: "Plus Jakarta Sans", sans-serif;
  --heading-1: 48px;
  --heading-2: 36px;
  --heading-3: 28px;
  --heading-4: 24px;
  --heading-5: 25px;
  --heading-6: 16px;
  --paragraph: 14px;
  --text-13: 13px;
  --text-18: 18px;
  --text-20: 20px;

  
  --color-white: #fff;
  --color-black: #000;
  --color-primary: #00537a;
  --color-primary-light: #4e9abf;
  --color-primary-bg: #e1eef5;
  --color-dark: #002031;
  --color-dark-2: #173748;
  --color-dark-3: #00415f;
  --color-secondary: #f39229;
  --color-brown: #8b5317;
  --color-bonus: #fecc00;
  --color-gray-light: #666;
  --color-gray-light-2: #999999;
  --gradient-primary: linear-gradient(to right, #00537a, #4b94c9);
  --gradient-primary-2: linear-gradient(to right, #00537a, #002a3d);
  --gradient-secondary: linear-gradient(to right, #f39229, #fdcc03);

  --border-light: #f0f3f5;
  --border-light-2: #f2f2f2;
  --border-primary: #90c4dd;
  --bg-gray-1: #f3f3f3;
  --bg-gray-2: #f3f7f8;
  --bg-dark-gray: #e9e9e9;
  --input-bg: #f4f7f8;
  --input-border: #d5e2e5;
  --label-color: #b5bfc4;
}

body {
  font-family: var(--font-primary);
  font-size: var(--paragraph);
}
a {
  text-decoration: none;
}
h1 {
  font-size: var(--heading-1);
}
h2 {
  font-size: var(--heading-2);
}
h3 {
  font-size: var(--heading-3);
}
h4 {
  font-size: var(--heading-4);
}
h5 {
  font-size: var(--heading-5);
}
h6 {
  font-size: var(--heading-6);
}
p {
  font-size: var(--paragraph);
}
.text-primary {
  color: var(--color-primary) !important;
}
.text-primary-light {
  color: var(--color-primary-light) !important;
}
.bg-gray-1 {
  background-color: var(--bg-gray-1);
}
.thumb-rounded {
  border-radius: 12px;
}
.btn {
  padding: 12px 40px;
  font-size: var(--heading-6);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}
.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--font-primary);
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: none;
  outline: none;
  background-color: var(--color-dark);
  border-color: var(--color-dark);
}
.btn-secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--color-brown);
  border-color: var(--color-brown);
}
.btn-border-primary {
  color: var(--color-gray-light);
  border: 1.5px solid var(--color-primary-light);
  background-color: transparent;
}
.btn-border-primary:hover,
.btn-border-primary:focus {
  border-color: var(--color-primary-light);
  background-color: var(--color-primary-bg);
  box-shadow: 3px 3px 10px rgba(65, 136, 170, .2);
}
.btn-border-primary a{
  color: var(--color-gray-light);
  text-decoration: none !important;
}
.btn-lg {
  padding: 12px 60px;
}
.btn-sm {
  padding: 6px 25px;
}
.btn-link {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary-light);
  font-size: var(--text-18);
  font-weight: bold;
  text-decoration: underline;
}
.btn-link:hover,
.btn-link:focus {
  color: var(--color-primary-light);
}
.btn-link-plain {
  font-weight: 500;
  font-size: var(--heading-6);
}
.btn-link-dark {
  font-weight: 500;
  color: var(--color-dark-2);
}
.min-h-auto {
  min-height: auto !important;
}
.min-w-auto {
  min-width: auto !important;
}
.search-bar {
  padding: 9px 25px;
  border: 1px solid var(--border-light);
  border-radius: 50px;
}
.search-bar .form-control {
  padding: 0;
  border: none;
  color: var(--color-secondary);
}
.search-bar .input-group-text {
  background: transparent;
  border: none;
  margin-left: 0 !important;
  padding: 0;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}
.form-control {
  font-size: var(--paragraph);
}
.form-control:focus {
  box-shadow: none;
  outline: none;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  font-size: var(--paragraph);
  color: var(--color-gray-light-2);
  margin-bottom: 10px;
}
.form-group .form-control {
  padding: 12px 16px;
  color: var(--color-dark-2);
  font-size: var(--heading-6);
  border-radius: 5px;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
}
.form-group .form-control::placeholder {
  color: var(--bs-gray-500);
}
.form-group .form-control::-webkit-input-placeholder {
  color: var(--bs-gray-500);
}
.form-group .form-control::-moz-placeholder {
  color: var(--bs-gray-500);
}
.form-group .form-control:-moz-placeholder {
  color: var(--bs-gray-500);
}
.form-group .form-control:-ms-input-placeholder {
  color: var(--bs-gray-500);
}
.form-group select.form-control {
  appearance: none;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 20px;
  font-size: 16px;
  background: var(--input-bg) url(../images/icons/select-angle.svg) no-repeat;
  background-size: 14px;
  background-position: right 15px center;
  border: 1px solid #ccc;
}
.form-group.otp-inputs {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.form-group.otp-inputs .form-control {
  width: 45px;
  height: 60px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid var(--border-light-2);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, .16);
}
.country-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.country-field select {
  width: auto;
  min-width: 100px;
}
.form-btn-link {
  font-size: var(--paragraph);
  color: var(--color-dark-2);
  font-weight: 500;
  justify-content: flex-start;
}
.form-text-light {
  color: var(--color-gray-light-2);
}
.custom-radio {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: var(--paragraph);
  user-select: none;
  color: var(--color-gray-light-2);
}
.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.custom-radio .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--color-primary-light);
}
.custom-radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom-radio input:checked ~ .checkmark {
  background-color: var(--color-primary-light);
}
.custom-radio input:checked ~ .checkmark:after {
  display: block;
}
.custom-radio .checkmark:after {
  top: 3px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-white);
}

.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: var(--paragraph);
  user-select: none;
  color: var(--color-dark-2);
}
.custom-checkbox.bold {
  color: var(--color-dark-2);
  font-weight: bold;
  font-size: var(--text-20);
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.custom-checkbox.bold .checkmark {
  top: 7px;
}
.custom-checkbox .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 17px;
  width: 17px;
  border-radius: 4px;
  border: 1.5px solid #42697e;
}
.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--color-primary);
}
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
  content: "✔"; 
  position: absolute;
  top: 1px;
  left: 3px;
  font-size: 10px;
  color: var(--color-white);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px var(--color-gray-light-2);
  border-radius: 10px;
  margin-right: 4px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-dark-3);
  border-radius: 10px;
}

.plain-list {
  list-style: none;
  padding: 0;
}
.plain-list li,
.plain-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  color: var(--color-gray-light);
}
.plain-list .text-primary {
  font-size: var(--heading-6);
  font-weight: bold;
  margin-bottom: 5px;
}
.plain-list .small {
  font-size: var(--paragraph);
  color: var(--color-gray-light);
}


.section-header .section-title {
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--color-dark-2);
  display: flex;
  align-items: center;
  gap: 15px;
}
.section-header .section-sub-title {
  font-size: var(--text-20);
  line-height: 30px;
  font-weight: bold;
  color: var(--color-dark-2);
  margin-bottom: 20px;
}
.section-header .section-sub-title.normal {
  font-size: var(--heading-4);
  font-weight: normal;
  line-height: 35px;
}
.section-header .section-sub-title.medium {
  font-size: var(--heading-4);
  font-weight: 500;
  line-height: 35px;
}
.section-header {
  margin-bottom: 50px;
}
.section-header p {
  margin-bottom: 20px;
  color: var(--color-gray-light);
  font-size: var(--heading-6);
}
.section-header .light {
  font-size: var(--paragraph);
  color: var(--color-gray-light-2);
}
.section-padding {
  padding: 120px 0;
}


.header-box {
  padding: 20px 10px;
  box-shadow: 0 0 8px rgba(55, 41, 25, .3);
}
.header-box .logo {
  max-height: 50px;
}
.header-box .navbar-nav {
  gap: 60px;
}
.header-box .navbar-brand {
  padding: 0;
  margin: 0;
}
.header-box .navbar-nav .nav-item .nav-link {
  padding: 0;
  color: var(--color-dark);
  font-size: var(--heading-6);
}
.header-box .nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-box .navbar-nav .dropdown-menu {
  margin-top: 32px;
  background: var(--border-light);
}
.header-box .navbar-nav .dropdown-menu .dropdown-item {
  font-size: var(--heading-6);
  font-weight: 500;
  color: var(--color-dark);
  padding: 10px 20px;
  background-color: var(--border-light);
}
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
  transition: background-color .3s ease, padding .3s ease;
}
.header-sticky.scrolled {
  background-color: rgba(255, 255, 255, .9);
  padding: 10px 0;
}


.banner-slider .slick-slide {
  position: relative;
}
.banner-slider .slick-slide .icon {
  min-height: 60px;
}
.banner-slider .slide-box,
.banner-box .slide-box {
  position: absolute;
  top: 20%;
  color: var(--color-white);
  z-index: 2;
  max-width: 60%;
}
.banner-box .slide-box {
  top: 35%;
}
.banner-slider .slide-thumb,
.banner-box .slide-thumb {
  width: 100%;
  min-height: 900px;
  object-fit: cover;
}
.banner-wrapper .slide-thumb.mobile {
  display: none;
}
.banner-slider .slick-prev {
  left: 25px;
}
.banner-slider .slick-next {
  right: 25px;
}
.banner-slider .slide-title,
.banner-box .slide-title {
  font-weight: 600;
  font-size: 65px;
}
.banner-slider .slide-sub-title,
.banner-box .slide-sub-title {
  font-size: 28px;
  font-weight: bold;
  margin-top: 25px;
}
.banner-slider .banner-items,
.banner-box .banner-items {
  display: flex;
  align-items: flex-start;
  gap: 45px;
}
.banner-slider .banner-items p,
.banner-box .banner-items p {
  color: var(--label-color);
  margin-bottom: 5px;
  font-size: 13px;
  text-transform: uppercase;
}
.banner-slider .banner-items .price,
.banner-box .banner-items .price {
  font-size: 45px;
  font-weight: 500;
}
.banner-slider .banner-items .price span,
.banner-box .banner-items .price span {
  font-size: 24px;
}
.banner-slider .slick-dots {
  bottom: 180px;
}
.banner-slider .slick-dots li button:before {
  color: var(--color-primary-bg);
  opacity: .5;
}
.banner-slider .slick-dots li.slick-active button:before {
  color: var(--color-white);
  opacity: 1;
}
.banner-wrapper {
  position: relative;
}
.banner-wrapper.banner-small .slide-thumb {
  min-height: 400px;
}
.banner-wrapper.banner-small .slide-box {
  max-width: 50%;
}


.request-form {
  padding: 30px 60px;
  border-radius: 15px;
  box-shadow: 0 0 12px rgba(0, 50, 74, .2);
  background-color: var(--color-white);
  bottom: 180px;
  position: relative;
  z-index: 9;
  width: 100%;
  left: 0;
}
.request-form .form-row {
  display: flex;
  gap: 15px;
  align-items: center;
}
.request-form .form-row .form-group {
  flex: 1;
}
.request-form .form-btns {
  margin-top: 20px;
}
.request-form-cards .form-title {
  font-weight: bold;
}
.request-form-cards p {
  color: var(--color-gray-light);
}
.request-form-cards .request-cards {
  display: flex;
  align-items: center;
  gap: 20px;
}
.request-form-cards .request-cards .card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 20px;
  background-color: var(--bg-gray-1);
  border: 1px solid var(--input-border);
  border-radius: 5px;
}
.request-form-cards .request-cards .card img {
  height: 35px;
}
.request-form-cards .request-cards .card p {
  margin: 0;
}


.card .thumb {
  position: relative;
}
.card .tag {
  position: absolute;
  top: 15px;
  right: 15px;
}
.card .tag.relative {
  position: initial;
}
.offer-card {
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(65, 136, 170, .2);
  border: none;
  height: calc(100% - 25px);
  margin-bottom: 30px;
}
.offer-card .thumb {
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 100%;
  min-height: 220px;
  max-height: 220px;
}
.offer-card .thumb img {
  width: 100%;
  min-height: 220px;
  max-height: 220px;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
  height: auto;
}
.offer-card:hover .thumb img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.offer-card .thumb-large,
.offer-card .thumb-large img {
  min-height: 260px;
  max-height: 260px;
}
.offer-card .card-body {
  padding: 20px 16px;
}
.offer-card .card-title {
  margin-bottom: 12px;
  margin-top: 7px;
  font-weight: bold;
  font-size: var(--text-20);
  color: var(--color-dark-2);
}
.offer-card .card-desc {
  font-size: var(--paragraph);
  color: var(--color-gray-light);
  margin: 0;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 65px;
}
.offer-card .date {
  font-size: var(--paragraph);
  color: #5f7581;
  margin-bottom: 10px;
}
.offer-card .card-amenities {
  border-top: 1px solid var(--border-light-2);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
}
.offer-card .card-amenities &gt; div {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}
.offer-card .card-amenities label {
  font-size: 13px;
  color: var(--label-color);
  text-transform: uppercase;
}
.offer-card .card-amenities .amenity-title {
  font-weight: bold;
  color: var(--color-primary-light);
  font-size: var(--paragraph);
  margin: 0;
}
.offer-card .card-amenities .amenity-price {
  margin: 0;
  font-size: var(--paragraph);
  color: var(--color-dark-2);
  font-weight: bold;
}
.offer-card .price-big {
  font-size: var(--heading-4);
}
.offer-card .card-action {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
.offer-card .card-action .btn {
  width: 100%;
  padding: 11px 30px;
  font-size: var(--heading-6);
}
.offer-card .card-action .btn-link {
  padding: 0;
  justify-content: flex-start;
  width: auto;
  text-decoration: none;
}
.offer-slider .slick-slide {
  padding: 20px 15px;
}
.offer-card .offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.offer-card .offer-list-2 li {
  color: var(--color-gray-light-2);
}
.offer-card .card-sub-head {
  font-size: var(--text-18);
}
.offer-card .offer-list.min-offer {
  min-height: 90px;
}
.offer-card .offer-list li {
  font-weight: bold;
  color: var(--color-dark-2);
  font-size: var(--heading-6);
}
.offer-card .offer-list li span {
  color: var(--color-gray-light);
  margin-right: 8px;
  font-size: var(--text-18);
}
.offer-card .offer-list li .text-14 {
  font-size: var(--paragraph);
  color: var(--color-dark-2);
}
.offer-card.icon-only {
  text-align: center;
}
.offer-card.icon-only .icon {
  margin-top: 45px;
}
.offer-card.icon-only .icon img {
  height: 60px;
}
.offer-card.icon-only .icon.small img {
  height: 40px;
}
.card-icon-text {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.card-icon-text p {
  margin: 0;
  font-size: var(--heading-6);
  color: var(--color-gray-light);
}
.card-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  flex-direction: row;
}
.card-flex .card-desc {
  margin: 0;
  font-size: var(--heading-6);
  min-height: auto;
}
.fixed-offer-card {
  transition: transform .3s ease, box-shadow .3s ease, top .3s ease;
  position: relative;
  z-index: 1;
}
.fixed-offer-card.sticky {
  position: fixed;
  top: 100px;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
  transform: translateY(0);
}
.fixed-offer-card:not(.sticky) {
  transform: translateY(0);
  position: relative;
}


.slick-dots li button:before {
  font-size: 12px;
  opacity: 1;
  color: var(--color-primary-bg);
}
.slick-dots li.slick-active button:before {
  color: var(--color-primary);
}
.slick-dots {
  bottom: -70px;
}
.slick-arrow::before {
  content: "";
  background: url(../images/icons/angle-left-circle-small.png);
  display: block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
}
.slick-next::before {
  background: url(../images/icons/angle-right-circle-small.png);
  background-repeat: no-repeat;
}
.slick-next,
.slick-prev {
  width: 50px;
  height: 50px;
  z-index: 1;
}


.cta-wrapper-1 {
  background: url(../images/cta-bg-2.png) no-repeat;
  background-size: cover;
  color: var(--color-white);
}
.cta-wrapper-1 .cta-title {
  font-weight: bold;
}
.cta-wrapper-1 .cta-subtitle {
  font-weight: 500;
}
.cta-wrapper-1.cta-bg-3 {
  background: url(../images/cta-bg-3.png) no-repeat;
  background-size: cover;
}
.cta-wrapper-1.cta-bg-4 {
  background: url(../images/cta-bg-4.png) no-repeat;
  background-size: cover;
}
.cta-wrapper-1.cta-bg-5 {
  background: url(../images/slider_contactcenter.jpg) no-repeat;
  background-size: cover;
}
.cta-wrapper-1.cta-bg-transparent {
  background: url(../images/cta-bg-transparent.png) no-repeat;
  background-size: cover;
}


.cta-wrapper-2 {
  background: url(../images/cta-bg-1.png) no-repeat;
  background-size: cover;
  color: var(--color-white);
  padding: 50px;
  border-radius: 15px;
}
.cta-box-2 {
  display: flex;
  align-items: center;
  gap: 40px;
}
.cta-box-2 h4 {
  font-weight: bold;
}
.cta-box-2 p {
  font-size: var(--paragraph);
  margin: 0;
}
.cta-wrapper-2.bg-3 {
  background: url(../images/cta-bg-small-3.png) no-repeat;
  background-size: cover;
}
.cta-wrapper-2.bg-2 {
  background: url(../images/cta-bg-small-2.png) no-repeat;
  background-size: cover;
}


.service-wrapper {
  box-shadow: 0 0 15px rgba(181, 191, 196, .2);
}


.brands-wrapper {
  background-color: var(--bg-gray-1);
}
.brands-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.brands-row img {
  max-height: 30px;
}


.assistance-card {
  background-color: var(--bg-gray-1);
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 50, 74, .2);
}
.how-wrapper .brands-row {
  margin: 50px auto 0;
}


.custom-tabs {
  display: flex;
  justify-content: center;
}
.custom-tabs-list {
  display: inline-flex;
  background-color: var(--bg-dark-gray);
  border-radius: 50px;
  padding: 5px;
  gap: 15px;
}
.custom-tabs .nav-item {
  padding: 0;
}
.custom-tabs .nav-item .nav-link {
  color: var(--color-dark-3);
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: var(--paragraph);
  padding: 10px 20px;
  white-space: nowrap;
}
.custom-tabs-content {
  margin-top: 40px;
}
.custom-tabs-content .tab-sub-title {
  color: var(--color-black);
  font-weight: bold;
  font-size: var(--text-18);
}
.tab-table tr {
  vertical-align: middle;
}
.tab-table tr td {
  font-size: var(--paragraph);
  white-space: nowrap;
  padding: 20px 0;
}
.tab-table tr td .btn {
  font-size: var(--paragraph);
}
.tab-table .date {
  color: var(--color-gray-light-2);
  font-size: 12px;
}
.tab-table .title {
  font-size: var(--heading-6);
  font-weight: 900;
  color: var(--color-dark-3);
}

.offer-card-2 {
  background-color: transparent;
  border: none;
}
.offer-card-2 .card-title {
  font-size: var(--text-18);
  font-weight: bold;
  color: var(--color-dark-3);
  position: relative;
}
.offer-card-2 .card-title::after {
  content: "";
  width: 50px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -15px;
  background-color: var(--color-primary-light);
  border-radius: 50px;
}
.offer-card-2 p {
  margin-top: 20px;
  color: var(--color-gray-light);
}
.offer-card-2 .btn-link-icon {
  width: 42px;
  height: 42px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-primary);
  padding: 0;
}
.tab-card-rows .offer-card-2 {
  max-width: 90%;
  height: calc(100% - 25px);
  margin-bottom: 30px;
}
.tab-card-rows &gt; div:not(:first-child) .offer-card-2 {
  border-left: 1px solid var(--input-border);
  padding-left: 20px;
}
.tab-card-plain {
  margin-bottom: 20px;
}
.tab-card-plain .card-title {
  position: relative;
  font-size: var(--text-18);
  font-weight: bold;
  color: var(--color-dark-3);
  margin-bottom: 35px;
}
.tab-card-plain .card-title::after {
  content: "";
  width: 50px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -15px;
  background-color: var(--color-primary-light);
  border-radius: 50px;
}
.tab-card-plain p {
  font-size: var(--heading-6);
  color: var(--color-gray-light);
}


.about-wrapper .video-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-wrapper .play-icon {
  position: absolute;
  border: none;
  outline: none;
  padding: 0;
}
.about-wrapper .play-icon img {
  width: 80px;
}
.about-card {
  padding: 60px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 0 24px rgba(65, 136, 170, .2);
}
.about-card .about-header {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.about-card .about-title {
  font-weight: bold;
  color: var(--color-dark-2);
  margin: 0;
}
.about-card p {
  font-size: var(--heading-6);
  color: var(--color-gray-light);
}
.about-card .btn-link {
  text-decoration: none;
  font-size: var(--heading-6);
}
.about-wrapper .about-check-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 30px 0;
}
.about-wrapper .about-check-list li {
  font-size: var(--paragraph);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 47%;
}
.about-wrapper .about-check-list li img {
  margin-top: 5px;
}
.about-wrapper .about-check-list.w-auto li {
  width: auto;
}
.video-wrapper-full {
  padding: 10px 0;
}


footer {
  background-color: var(--color-dark);
  padding: 50px 15px 30px;
  color: var(--color-white);
  position: relative;
  z-index: 20;
}
.copyright-text {
  color: #42697e;
  padding: 12px 12px 0 12px;
  border-top: 1px solid #42697e;
  margin-top: 30px;
  margin-bottom: 0;
}
footer .footer-logo {
  margin-bottom: 20px;
  height: 50px;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer .footer-title {
  font-size: var(--paragraph);
  font-weight: 600;
  margin-bottom: 25px;
}
footer .footer-list li a {
  display: block;
  font-size: var(--paragraph);
  text-decoration: none;
  color: var(--color-white);
  margin-bottom: 8px;
}
footer .footer-brands {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}
footer .footer-brands img {
  height: 40px;
}
footer .footer-contact-list {
  margin-top: 25px;
}
footer .footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--color-white);
  text-decoration: none;
}


.news-wrapper {
  background: var(--gradient-primary-2);
}
.news-card {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.news-card .news-thumb {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.news-card .news-thumb img {
  border-radius: 10px;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
  height: auto;
}
.news-card:hover .news-thumb img {
  transform: scale(1.1);
  filter: brightness(1.2);
}
.tag {
  border-radius: 50px;
  padding: 5px 10px;
  font-size: var(--paragraph);
  background: var(--gradient-secondary);
  color: var(--color-brown);
  box-shadow: 0 0 20px #fdcc03;
}
.news-card .date {
  font-size: var(--text-13);
  color: var(--label-color);
  margin-bottom: 12px;
}
.news-card .title {
  color: var(--color-dark-2);
  font-size: var(--heading-6);
  font-weight: bold;
}
.news-card .description {
  font-size: var(--heading-6);
  color: var(--color-gray-light);
  margin: 0;
}
.news-card .btn-link {
  margin-top: 30px;
  color: var(--color-primary-light);
  text-decoration: none;
}
.news-card.card-small .btn-link {
  margin-top: 14px;
  font-size: var(--heading-6);
}
.news-card.card-small .news-thumb,
.news-card.card-small .news-thumb img {
  height: 100%;
}
.divider.light {
  color: var(--color-primary-bg);
  opacity: 20%;
}
.divider.dark {
  color: var(--input-border);
  opacity: 1;
}


.info-wrapper .info-users {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.info-wrapper .info-users .user-box {
  text-align: center;
}
.info-wrapper .info-users .user-box p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--color-gray-light-2);
}
.info-wrapper .info-desc {
  color: var(--color-dark-3);
  font-size: var(--heading-6);
}
.info-wrapper .form-group {
  margin-bottom: 22px;
}


.banner-breadcrumb {
  position: absolute;
  top: 25px;
  z-index: 1;
  color: var(--color-white);
}
.banner-breadcrumb li {
  color: var(--color-white);
  font-weight: 600;
}
.banner-breadcrumb li a {
  color: var(--color-white);
  font-weight: normal;
}
.banner-breadcrumb .breadcrumb-item::before {
  color: var(--color-white);
}
.banner-breadcrumb .breadcrumb-item.active {
  color: var(--color-white);
}


.overview-wrapper-1 {
  background: url(../images/dummy-banner-bg.png) no-repeat;
  background-size: cover;
  padding: 100px 0;
}
.overview-wrapper-1 .section-title {
  color: var(--color-white);
}
.overview-wrapper-1 .section-sub-title {
  color: var(--color-white);
  font-size: var(--text-20);
  font-weight: bold;
}
.overview-wrapper-1 p {
  color: var(--color-white);
  font-size: var(--heading-6);
}


.element-card {
  text-align: center;
}
.element-card .icon {
  height: 40px;
}
.element-card .card-title {
  font-size: var(--text-18);
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--color-primary-light);
}
.element-card p {
  margin: 0 auto;
  font-size: var(--heading-6);
  color: var(--color-gray-light);
  max-width: 80%;
}


.info-card {
  box-shadow: 0 0 20px rgba(0, 50, 74, .2);
  border-radius: 10px;
  padding: 25px;
  padding-right: 20px;
  border: none;
  align-items: flex-start;
  height: calc(100% - 25px);
  margin-bottom: 30px;
}
.info-card .icon {
  height: 50px;
  margin-bottom: 25px;
}
.info-card .card-title {
  font-size: var(--text-18);
  font-weight: bold;
  color: var(--color-primary-light);
}
.info-card p {
  font-size: var(--heading-6);
  color: var(--color-gray-light);
  margin: 0;
}


.mission-card {
  align-items: flex-start;
  border: none;
  box-shadow: 0 0 20px rgba(0, 50, 74, .2);
  border-radius: 10px;
  padding: 35px;
  height: calc(100% - 30px);
  margin-bottom: 35px;
}
.mission-card .thumb {
  height: 55px;
  margin-bottom: 25px;
}
.mission-card .card-title {
  margin-bottom: 30px;
  position: relative;
  color: var(--color-dark-2);
  border: none !important;
  font-weight: bold;
}
.mission-card .card-title.border {
  margin-bottom: 40px;
}
.mission-card .card-title.border::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 50px;
  height: 3px;
  border-radius: 50px;
  background: var(--color-primary-light);
}
.mission-card p {
  font-size: var(--heading-6);
  color: var(--color-gray-light);
}


.color-card {
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(65, 136, 170, .2);
  min-height: 340px;
  margin-bottom: 35px;
}
.color-card .card-title {
  font-size: var(--text-20);
  font-weight: bold;
  color: var(--color-white);
  margin-bottom: 25px;
}
.color-card p {
  color: var(--color-white);
  font-size: var(--paragraph);
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.color-card.primary {
  background-color: var(--color-primary);
}
.color-card.secondary {
  background-color: var(--color-secondary);
}
.color-card.gray {
  background-color: var(--bg-dark-gray);
}
.color-card.gray .card-title {
  color: var(--color-dark-3);
}
.color-card.gray p {
  color: var(--color-gray-light);
}
.color-card.particles {
  background: var(--color-dark-3) url(../images/bg-particles-blue.png)
    no-repeat;
  background-size: cover;
}


.contact-box {
  padding: 40px 0;
}
.contact-box .logo img {
  height: 80px;
}
.contact-box .contact-heading {
  font-size: var(--text-20);
  font-weight: bold;
  color: var(--color-dark-2);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.contact-box .contact-heading.black {
  color: var(--color-black);
  font-size: var(--heading-6);
}
.contact-box p {
  color: var(--color-gray-light);
  font-size: var(--heading-6);
}
.contact-box .list {
  list-style: none;
  padding: 0;
}
.contact-box .list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-gray-light);
  margin-bottom: 10px;
  font-size: var(--heading-6);
}
.contact-box .address-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0;
}
.contact-box .address-list li {
  padding-left: 12px;
  border-left: 1px solid var(--input-border);
}
.contact-box .address-list li h4 {
  font-size: var(--heading-6);
  color: var(--color-dark);
}
.contact-box .address-list li p {
  font-size: var(--heading-6);
  color: var(--color-gray-light);
  margin: 0;
}
.cta-contact-box .address-list li h4 {
  font-weight: 600;
  color: var(--color-white);
}
.cta-contact-box .address-list li p {
  color: var(--color-white);
}
.cta-contact-box .contact-heading {
  color: var(--color-white);
  font-size: var(--heading-3);
}


.faq-accordion .accordion-item {
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid var(--border-light-2);
}
.faq-accordion .accordion-item.active {
  box-shadow: 0 0 20px rgba(0, 50, 74, .2);
}
.faq-accordion .accordion-header .accordion-button {
  padding: 20px 40px;
  background-color: transparent;
  border: none;
  font-weight: bold;
  color: var(--color-dark-3);
  box-shadow: none;
  position: relative;
  font-size: var(--text-18);
}
.faq-accordion .accordion-header .accordion-button::after {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  background: var(--color-primary)
    url(../images/icons/minus-icon-inactive.svg) no-repeat;
}
.faq-accordion
  .accordion-item.active
  .accordion-header
  .accordion-button::after {
  background: var(--color-primary) url(../images/icons/plus-icon-active.svg)
    no-repeat;
}
.faq-accordion .accordion-body::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  top: 10px;
  left: 40px;
  border-radius: 50px;
  background: var(--color-primary-light);
}
.faq-accordion p {
  color: var(--color-gray-light);
  font-size: var(--paragraph);
  margin-top: 10px;
}
.faq-accordion .accordion-body {
  padding: 20px 40px;
  position: relative;
}
.service-details .thumb {
  width: 100%;
  margin-bottom: 25px;
}
.service-detail-card-box p {
  color: var(--color-dark);
  font-size: var(--paragraph);
  line-height: 25px;
}


.highlight-wrapper {
  bottom: 120px;
  margin-bottom: -50px;
  position: relative;
  z-index: 9;
  width: 100%;
  left: 0;
}
.h-service-card {
  height: calc(100% - 25px);
  margin-bottom: 25px;
  text-align: center;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(65, 136, 170, .2);
  background-color: var(--color-white);
}
.h-service-card .icon-thumb {
  margin-bottom: 15px;
  height: 50px;
}
.h-service-card .card-title {
  color: var(--color-primary-light);
  font-size: var(--heading-1);
  font-weight: bold;
}
.h-service-card .card-title .small {
  font-size: var(--heading-4);
}


.chatbot-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 20px;
  flex-direction: column;
}
.chatbot-wrapper .btn {
  padding: 10px;
}
.chatbot-wrapper .btn:hover,
.chatbot-wrapper .btn:focus {
  outline: none;
}
.chatbot-wrapper .btn-chat {
  width: 55px;
  height: 55px;
  border-radius: 50px;
  box-shadow: 3px 3px 10px rgba(65, 136, 170, .2);
  background-color: var(--color-white);
}
.chatbot-wrapper .chatbot-box {
  box-shadow: 0 0 12px rgba(0, 50, 74, .2);
  border-radius: 10px;
  min-width: 250px;
  max-width: 350px;
  background-color: var(--color-white);
  display: none;
  opacity: 0;
  transition: opacity .3s ease;
  display: none;
}
.chatbot-wrapper .chatbot-box.show {
  display: block;
  opacity: 1;
}
.chatbot-wrapper .chat-header {
  padding: 15px 25px 15px 15px;
  position: relative;
}
.chatbot-wrapper .btn-close {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 12px;
  background-color: var(--bg-dark-gray);
}
.chatbot-wrapper .btn-close:focus {
  box-shadow: none;
  outline: none;
}
.chatbot-wrapper .chat-title {
  font-weight: bold;
  font-size: var(--heading-6);
  color: var(--color-dark-2);
}
.chatbot-wrapper .chat-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chatbot-wrapper .chat-user p {
  margin: 0;
  font-size: 12px;
  color: var(--color-gray-light);
}
.chatbot-wrapper .btn-chat-start {
  text-align: center;
  font-weight: 600;
  padding: 10px;
  color: var(--color-primary-light);
  font-size: var(--paragraph);
  width: 100%;
  border-top: 1px solid var(--input-border);
  border-radius: 0;
}
.download-pdf-link {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: bold;
  font-size: var(--paragraph);
  color: var(--color-dark-2);
  margin-bottom: 15px;
  background-color: var(--input-bg);
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 50px;
}
.download-pdf-link img {
  height: 25px;
}
.number-list li {
  margin-bottom: 15px;
}


.offer-details {
  padding-top: 20px;
}
.offer-details .offer-card .card-desc {
  display: block;
  overflow: visible;
}
.offer-details .offer-card .offer-list li {
  font-size: var(--heading-6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.offer-details .offer-card .offer-list.start li {
  justify-content: flex-start;
}
.offer-details .offer-card .offer-list li span {
  font-size: var(--paragraph);
  text-align: right;
}
.offer-table ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--heading-6);
  padding: 0;
  max-width: 80%;
}
.offer-table ul li {
  color: var(--color-dark);
  font-size: var(--heading-6);
  padding: 0 var(--heading-6);
}
.offer-table li span {
  font-size: var(--text-18);
  color: var(--color-primary-light);
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 10px;
  display: inline-block;
}
.offer-table ul li:nth-child(2n) {
  background-color: var(--border-light-2);
  border-radius: 10px;
  padding: var(--heading-6);
}
.document-download-card {
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-18);
  font-weight: bold;
  color: var(--color-dark-3);
  background-color: var(--color-white);
  box-shadow: 0 3px 6px rgba(65, 136, 170, .2);
  border: 1px solid var(--border-light-2);
  margin-bottom: 20px;
}
.document-download-card:hover {
  color: var(--color-dark-3);
}


.req-card {
  border: 3px solid transparent;
}
.req-card.icon-only .icon {
  height: auto;
  transition: .3s all ease-in;
}
.req-card.icon-only .icon img {
  height: 45px;
}
.req-card.icon-only .icon .hover {
  visibility: hidden;
  opacity: 0;
  height: 0;
}
.req-card.icon-only:hover .icon .normal {
  visibility: hidden;
  opacity: 0;
  height: 0;
}
.req-card.icon-only:hover .icon .hover {
  visibility: visible;
  opacity: 1;
  height: 45px;
}
.req-card.icon-only:hover {
  border-color: var(--color-primary);
}

.step-wrapper {
  padding: 70px 0;
}
.back-page-link {
  justify-content: flex-start;
  margin-bottom: 25px;
  text-decoration: none;
  color: var(--color-gray-light);
  font-weight: normal;
  font-size: var(--paragraph);
}
.steps-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
}
.steps-bar .step {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 25%;
}
.steps-bar .step .count {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: var(--color-white);
  border: 1px solid var(--input-border);
  font-size: var(--paragraph);
  font-weight: 600;
  color: var(--color-primary);
}
.steps-bar .step.active .count {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.steps-bar .step .step-title {
  font-size: var(--paragraph);
  color: var(--color-dark-2);
  text-align: center;
}
.steps-bar .step.active .step-title {
  font-weight: 600;
}
.stepper-wrapper {
  margin-bottom: 50px;
  margin-top: 20px;
}
.stepper-wrapper .step-progress {
  position: relative;
  border-radius: 50px;
  width: 100%;
  height: 12px;
  background-color: var(--bg-gray-2);
}
.stepper-wrapper .step-progress .progress-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 12px;
  width: 25%;
  background: var(--gradient-secondary);
  border-radius: 50px;
  z-index: 1;
}
.stepper-wrapper .step-progress .progress-box {
  transition: width .3s ease-in-out;
}
.stepper-wrapper .step-progress .progress-box label {
  position: absolute;
  right: 0;
  top: -25px;
}

.step-detail-row {
  border-top: 1px solid var(--input-border);
  padding-top: 25px;
  margin-top: 30px;
}
.card.radio-card,
.card.radio-checkbox {
  text-align: center;
  padding: 20px;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--color-white);
}
.card.radio-card .card-body,
.card.radio-checkbox .card-body {
  padding: 0;
  flex: 0 0 auto;
}
.card.radio-card .card-title,
.card.radio-checkbox .card-title {
  margin: 0;
}
.card.radio-card .radio-ui,
.card.radio-checkbox .radio-ui {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.card.radio-card .radio-ui .checkmark,
.card.radio-checkbox .radio-ui .checkmark {
  left: 40%;
}
.card.radio-card.active,
.card.radio-checkbox.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(65, 136, 170, .45);
}
.drag-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1.5px dashed var(--input-border);
  background-color: var(--input-bg);
  border-radius: 10px;
  padding: 50px;
  cursor: pointer;
}
.drag-wrapper .icon {
  margin-bottom: 12px;
}
.drag-wrapper .upload-text {
  font-size: var(--heading-6);
  margin: 0;
}
.step-done-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid var(--input-border);
}
.step-done-box .title {
  font-weight: bold;
  color: #5f7581;
  margin: 0;
}
.step-done-box .btn-link {
  font-weight: 500;
}
.step-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.step-actions .btn-link {
  font-weight: 500;
}
.step-actions .btn-secondary.btn:disabled {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.file-card {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin-bottom: 15px;
}
.file-card .file {
  display: flex;
  align-items: center;
  gap: 10px;
}
.file-card .filename {
  margin: 0;
}
.file-card .remove {
  cursor: pointer;
}
.alert-success {
  color: #71b262;
  font-size: var(--paragraph);
  padding: 10px;
  background-color: #e1f5dc;
  border-color: #cdeac6;
  border-radius: 5px;
}


.login-card .login-title {
  margin-bottom: 30px;
  font-weight: bold;
  color: var(--color-dark-2);
}
.login-card .login-desc {
  margin-bottom: 30px;
  font-weight: normal;
  color: var(--color-gray-light);
  line-height: 25px;
}
.login-card .forgot-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.offcanvas-backdrop {
  background-color: var(--color-dark-2);
}
.offcanvas-backdrop.show {
  opacity: .8;
}
.modal {
  backdrop-filter: blur(6px);
}
.modal-backdrop {
  background-color: var(--color-dark-2);
}
.modal-backdrop.show {
  opacity: .8;
}
.upload-file-modal .modal-content {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  text-align: center;
}
.upload-file-modal .icon {
  margin-bottom: 15px;
}
.upload-file-modal .modal-title {
  color: var(--color-white);
  margin-bottom: 10px;
  font-weight: bold;
}
.upload-file-modal .modal-desc {
  color: var(--color-white);
  font-weight: 500;
}
.custom-modal-ui .modal-header {
  border: none;
  padding-bottom: 0;
  padding: 20px 30px;
}
.custom-modal-ui .modal-title {
  font-weight: bold;
  color: var(--color-dark-2);
}
.custom-modal-ui .modal-desc {
  font-weight: normal;
  color: var(--color-gray-light);
  line-height: 25px;
}
.custom-modal-ui .modal-footer {
  justify-content: flex-start;
  border: none;
  padding: 20px 30px;
  gap: 15px;
}
.custom-modal-ui .btn {
  margin: 0;
  font-size: var(--heading-6);
}
.custom-modal-ui .modal-body {
  padding: 20px 30px;
}
.verify-modal .modal-content {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
}
.verify-modal .modal-head-plain {
  text-align: center;
}
.verify-modal .modal-head-plain .modal-title {
  color: var(--color-white);
  margin: 25px 0 40px;
}
.verify-modal .modal-body {
  background-color: var(--color-white);
  padding: 35px 50px;
  border-radius: 10px;
  border: 1px solid var(--color-gray-light);
}
.verify-modal .modal-sub-title {
  font-weight: bold;
  color: var(--color-dark-2);
  font-size: var(--heading-4);
}
.verify-modal .offer-card {
  padding: 30px;
  margin-bottom: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}
.verify-modal .offer-card .custom-radio {
  font-weight: bold;
  color: var(--color-dark-2);
  font-size: var(--text-18);
}
.verify-modal .offer-card .custom-radio .checkmark {
  top: 6px;
}
.verify-modal .success-otp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-direction: column;
  padding: 50px;
}


.welcome-wrapper {
  position: relative;
}
.welcome-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(243, 146, 41, .54),
    rgba(255, 255, 255, .54)
  );
  opacity: .54;
  z-index: -1;
}
.welcome-wrapper &gt; * {
  position: relative;
}
.welcome-wrapper .banner-breadcrumb li,
.welcome-wrapper .banner-breadcrumb li a,
.welcome-wrapper .banner-breadcrumb li.active,
.welcome-wrapper .banner-breadcrumb .breadcrumb-item::before {
  color: var(--color-dark-3);
}
.welcome-card {
  padding: 100px 50px;
  text-align: center;
}
.welcome-card .thumb img {
  max-height: 250px;
  margin-bottom: 30px;
}
.welcome-card .welcome-title {
  color: var(--color-dark-2);
  font-weight: bold;
  text-shadow: 0 3px 6px rgba(0, 50, 74, .2);
}
.welcome-card .welcome-sub-title {
  margin: 10px 0 15px;
  color: var(--color-dark-2);
  font-weight: bold;
  line-height: 30px;
}
.welcome-card .welcome-desc {
  margin-top: 15px;
  font-size: var(--heading-6);
  color: var(--color-gray-light);
}
.welcome-card .welcome-actions {
  display: inline-flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.welcome-card .btn-link {
  font-weight: 500;
}</pre></body></html>