.loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: rgba(60, 121, 116, 0.9019607843);
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader__container {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.loader__circle {
  position: relative;
  margin: 0 auto 14px;
  text-align: center;
}

.loader__circle img {
  display: block;
  width: auto;
  text-align: center;
  margin: 0 auto;
}

.loader__circle.fade {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

@-webkit-keyframes whiteShadow {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.2);
            box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.2);
    transition: -webkit-box-shadow 0.3s ease-in-out;
    -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  }
  100% {
    -webkit-box-shadow: 0 0 0 30px transparent;
            box-shadow: 0 0 0 30px transparent;
    transition: -webkit-box-shadow 0.4s ease-in-out;
    -webkit-transition: -webkit-box-shadow 0.4s ease-in-out;
    transition: box-shadow 0.4s ease-in-out;
    transition: box-shadow 0.4s ease-in-out, -webkit-box-shadow 0.4s ease-in-out;
  }
}
@keyframes whiteShadow {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.7);
            box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.7);
    transition: -webkit-box-shadow 0.3s ease-in-out;
    -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  }
  100% {
    -webkit-box-shadow: 0 0 0 30px transparent;
            box-shadow: 0 0 0 30px transparent;
    transition: -webkit-box-shadow 0.4s ease-in-out;
    -webkit-transition: -webkit-box-shadow 0.4s ease-in-out;
    transition: box-shadow 0.4s ease-in-out;
    transition: box-shadow 0.4s ease-in-out, -webkit-box-shadow 0.4s ease-in-out;
  }
}
@-webkit-keyframes load {
  0% {
    width: 0;
  }
  25% {
    width: 25%;
  }
  50% {
    width: 50%;
  }
  75% {
    width: 75%;
  }
  100% {
    width: 100%;
  }
}
@keyframes load {
  0% {
    width: 0;
  }
  25% {
    width: 25%;
  }
  50% {
    width: 50%;
  }
  75% {
    width: 75%;
  }
  100% {
    width: 100%;
  }
}
.progress {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 6px;
  width: 120px;
  margin: 0 auto;
  border-radius: 10px;
  border: 0px solid #d9d9d9;
  position: relative;
  padding: 1px;
  background: #d9d9d9;
}

.progress .progress-value {
  -webkit-animation: load 3s linear infinite;
          animation: load 3s linear infinite;
  -webkit-box-shadow: 0 10px 40px -10px #5FB3AA;
          box-shadow: 0 10px 40px -10px #5FB3AA;
  border-radius: 10px;
  background: #5FB3AA;
  height: 6px;
  width: 0;
}

.dark {
  --color-page-background: rgb(0, 0, 0);
  --color-text: #fff;
  --color-border: #fff;
  --color-article-background: #f0f9f8;
  --color-article-shadow: rgba(0, 0, 0, 0.15);
  background-color: rgb(0, 0, 0);
  color: #fff;
}
.dark header,
.dark header.fixed {
  background: var(--color-page-background);
}
.dark header .navbar,
.dark header.fixed .navbar {
  background-color: rgb(0, 0, 0);
  color: #fff;
}
.dark header .navbar .nav-item .nav-link,
.dark header.fixed .navbar .nav-item .nav-link {
  color: #fff;
}
.dark header .navbar img,
.dark header.fixed .navbar img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.dark header .navbar .navbar-brand p,
.dark header .navbar .navbar-brand span,
.dark header.fixed .navbar .navbar-brand p,
.dark header.fixed .navbar .navbar-brand span {
  color: #fff;
}
.dark header .navbar a,
.dark header.fixed .navbar a {
  color: #fff;
}
.dark header .navbar .nav-button,
.dark header.fixed .navbar .nav-button {
  background: #fff !important;
  color: rgb(0, 0, 0) !important;
}
.dark header .fixed,
.dark header.fixed .fixed {
  background: var(--color-page-background);
}
.dark .hero {
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}
.dark .hero .hero-content {
  color: var(--color-text);
}
.dark .hero .hero-content h1 {
  color: var(--color-text);
}
.dark .hero .hero-content p {
  color: var(--color-text);
}
.dark .hero .hero-image img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.dark .hero .btn_hero.btn-primary, .dark .hero .btn_hero.btn-secondary {
  background: rgb(0, 0, 0);
  border-color: #fff;
  background-color: rgb(0, 0, 0);
  color: #fff;
}
.dark .about, .dark .features {
  background: var(--color-page-background);
  color: var(--color-text);
}
.dark .about .title, .dark .features .title {
  color: var(--color-text);
}
.dark .about .titleBg, .dark .features .titleBg {
  color: var(--color-text);
}
.dark .about .about-content p, .dark .about .about-content h2, .dark .features .about-content p, .dark .features .about-content h2 {
  color: var(--color-text);
}
.dark .about .card, .dark .features .card {
  background: var(--color-border-background);
  border: #fff 1px solid !important;
  -webkit-box-shadow: 0 2px 4px var(--color-white-shadow) !important;
          box-shadow: 0 2px 4px var(--color-white-shadow) !important;
  color: var(--color-text);
}
.dark .about .card h3, .dark .features .card h3 {
  color: var(--color-text);
}
.dark .about .card p, .dark .features .card p {
  color: var(--color-text);
}
.dark .requirements .two-column-list li, .dark .requirements .title h2 {
  color: var(--color-text);
}
.dark .application-form .main_title {
  color: var(--color-text);
}
.dark .application-form .main_title .title, .dark .application-form .main_title p, .dark .application-form .main_title a.btn {
  color: var(--color-text);
}
.dark .application-form .card {
  background: var(--color-border-background);
  border: #fff 1px solid !important;
  -webkit-box-shadow: 0 2px 4px var(--color-white-shadow) !important;
          box-shadow: 0 2px 4px var(--color-white-shadow) !important;
  color: var(--color-text);
}
.dark .application-form .card h3 {
  color: var(--color-text);
}
.dark .application-form .card p {
  color: var(--color-text);
}
.dark .application-form .card .btn {
  background-color: transparent;
  color: var(--color-text);
  border-color: #fff;
}
.dark .footer {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55.5%, #2b2b2b), to(#171717));
  background: linear-gradient(180deg, #2b2b2b 55.5%, #171717 100%);
}
.dark .footer .footer__title {
  color: #fff;
}
.dark .footer .btn-primary {
  color: #fff;
  border-color: #fff;
  background: rgb(0, 0, 0) !important;
  background-color: rgb(0, 0, 0) !important;
}
.dark .footer__links li a {
  color: #fff;
}
.dark .footer__iconslinks li a img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.dark .footer__iconslinks li a span {
  color: #fff;
}
.dark .footer__qrcodeapp .footer__box span {
  color: #fff;
}
.dark .copyright {
  background: rgb(0, 0, 0);
}
.dark .theme-light-show {
  display: none !important;
}
.dark .theme-dark-show {
  display: block !important;
}

@font-face {
  font-family: "IBM Plex Regular";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts-plex/IBMPlexSansArabic-Regular.ttf");
}
@font-face {
  font-family: "IBM Plex Medium";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts-plex/IBMPlexSansArabic-Medium.ttf");
}
@font-face {
  font-family: "IBM Plex Light";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts-plex/IBMPlexSansArabic-Light.ttf");
}
@font-face {
  font-family: "IBM Plex SemiBold";
  src: url("../fonts-plex/IBMPlexSansArabic-SemiBold.ttf");
}
@font-face {
  font-family: "IBM Plex Bold";
  font-style: normal;
  src: url("../fonts-plex/IBMPlexSansArabic-Bold.ttf");
}
ol, ul {
  padding-left: 0rem;
}

body {
  font-family: "IBM Plex Medium";
  font-weight: 100;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
  color: #374151;
  background-color: #ffffff;
}
@media screen and (width >= 320px) and (width < 768px) {
  body {
    font-size: 14px;
    line-height: 24px;
  }
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.47rem;
}
.navbar-brand img {
  width: 151px;
  height: auto !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-bottom: 15px;
}
.navbar-brand p {
  margin-bottom: 0;
  color: #1F2937;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (width >= 320px) and (width < 768px) {
  .navbar-brand {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .navbar-brand img {
    padding-bottom: 0;
  }
}

li.nav-item {
  -webkit-margin-start: 14px;
          margin-inline-start: 14px;
}

.nav-link {
  color: #161616;
  height: 72px;
  padding: 8px 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 16px;
  line-height: 24px;
  font-weight: bolder;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "IBM Plex Bold" !important;
  color: #161616;
  text-align: right;
  font-family: "IBM Plex Sans Arabic";
  font-size: 1rem !important;
  font-style: normal;
  line-height: 1.5rem !important; /* 150% */
}
.nav-link:hover {
  background: #f3f4f6;
}
.nav-link:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  background-color: #9da4ae;
  border: 0;
}

.btn_header {
  all: unset;
  display: inline-block;
  padding: 0px 20px 0 0;
}

.hero {
  background: url("../assets/images/hero.webp");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 80vh;
}
@media screen and (width >= 320px) and (width < 768px) {
  .hero {
    min-height: 65vh;
    background-position: center;
  }
  .hero .header-content {
    position: relative;
    max-width: auto;
    text-align: center;
  }
}
.hero .header-content {
  max-width: 500px;
  position: absolute;
  top: calc(50% - 80px);
}
.hero .header-content h1 {
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.74px;
}
.hero .header-content p {
  color: #fff;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  /* 200% */
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #1F2937;
}

.lead {
  font-size: 1.125rem;
  color: #4B5563;
}

.navbar {
  background-color: #ffffff;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}
.navbar .navbar-brand img {
  height: 40px;
  width: auto;
}
.navbar .nav-link {
  color: #374151;
  font-weight: 500;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}
.navbar .nav-link.active {
  color: #00A19C;
}
.navbar .nav-link:hover {
  color: #00A19C;
}

.hero {
  background-color: #E5F6F6;
  padding: 4rem 0;
}
.hero h1 {
  margin-bottom: 1.5rem;
}
.hero .lead {
  margin-bottom: 2rem;
}
.hero img {
  max-width: 100%;
  height: auto;
}
.hero .btn_hero {
  border-radius: 0.25rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 2.5rem;
  padding: 0rem 1rem !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  font-size: 1rem;
  border-color: transparent !important;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.hero .btn_hero.btn-primary {
  background: #14AE5C;
}
.hero .btn_hero.btn-secondary {
  background: #3C7974;
}
.hero .btn_hero:hover {
  background-color: #0D121C;
  color: #fff;
  border-color: transparent !important;
}
.hero .btn_hero i {
  font-size: 1.25rem;
  color: #fff;
}

.btn {
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn-primary {
  background-color: #00A19C;
  border-color: #00A19C;
}
.btn-primary:hover {
  background-color: #009591;
  border-color: #009591;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.btn-outline-primary {
  color: #00A19C;
  border-color: #00A19C;
}
.btn-outline-primary:hover {
  background-color: #E5F6F6;
  color: #00A19C;
  border-color: #00A19C;
}

.about {
  background: #F0F9F8;
  padding: 30px 0;
}
.about .about-content {
  text-align: center;
}
.about .about-content h2 {
  color: #477E7A;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
.about .about-content p {
  color: #1E1E1E;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
}

.requirements {
  padding: 30px 0;
}
.requirements .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 13px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 26px;
}
.requirements .title h2 {
  color: #125752;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem;
}
.requirements .two-column-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  grid-auto-flow: dense;
}
@media screen and (width >= 320px) and (width < 768px) {
  .requirements .two-column-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.requirements .two-column-list li {
  position: relative;
  padding: 0rem 2rem 1.2rem;
  color: #1F2937;
  font-size: 0.875rem;
  line-height: 1.25rem; /* 142.857% */
}
.requirements .two-column-list li::after {
  position: absolute;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url("../assets/images/icons/list.svg");
  background-size: cover;
  top: 0;
  left: 0;
}
@media screen and (width >= 320px) and (width < 768px) {
  .requirements .two-column-list li {
    padding: 0rem 2rem 0.2rem 0;
    color: #1F2937;
    font-size: 0.675rem;
    line-height: 1.25rem;
  }
}
@media (max-width: 576px) {
  .requirements .two-column-list ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.titleBg {
  position: relative;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  color: #00A19C;
  line-height: 120%;
  text-align: center;
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 30px;
}
.titleBg span {
  z-index: 1;
  position: relative;
}
.titleBg::after {
  border-radius: 1.875rem;
  background: #ffda73;
  position: absolute;
  bottom: 0px;
  content: "";
  left: 0;
  right: 0;
  width: auto;
  height: 7px;
}

.features {
  padding: 30px 0;
  background: #F0F9F8;
}
.features .features-block {
  padding-top: 50px;
}
.features .card {
  background: white;
  border-radius: 0.5rem;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1.5rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.features .card:hover {
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.features .card .feature-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100%;
  background: #f3fcf6;
}
.features .card .feature-icon i {
  color: #067647;
}
.features .card h3 {
  color: #1f2a37;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem;
}

.application-form {
  padding: 30px 0;
}
.application-form .main_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 24px;
}
.application-form .main_title .title {
  color: #1F2937;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.375rem;
}
.application-form .main_title p {
  color: #1E1E1E;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
}
.application-form .main_title a {
  border-radius: 0.25rem;
  border: 1px solid #d2d6db;
  padding: 0.5rem 1rem !important;
}
@media screen and (width >= 320px) and (width < 768px) {
  .application-form .main_title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .application-form .main_title .title {
    margin-bottom: 10px;
  }
  .application-form .main_title p {
    margin-bottom: 10px;
  }
}

.card-application {
  border-radius: 0.91844rem;
  border: 0.918px solid #d6d2d2 !important;
  background: #fff;
}
.card-application .card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 24px;
}
.card-application .card-title .feature-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2.75531rem;
  height: 2.75531rem;
  padding: 0.68881rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100%;
  background: #f3fcf6;
}
.card-application .card-title .feature-icon i {
  color: #1F2937;
}
.card-application .card-title h3 {
  color: #1f2a37;
  font-size: 1.03325rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.60725rem; /* 155.556% */
}
.card-application .card-title .title {
  color: #1F2937;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.375rem;
}
.card-application .list-unstyled {
  padding-right: 0;
  padding-left: 0;
}
.card-application .list-unstyled li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  padding-right: 0.39rem;
  padding-left: 2.39rem;
  margin-bottom: 0.69rem;
}
.card-application .list-unstyled li .key img {
  display: inline-block;
  -webkit-padding-end: 5px;
          padding-inline-end: 5px;
}
.card-application .list-unstyled li p {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #1F2937;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.card-application a.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 2.29606rem;
  min-height: 2.29606rem;
  max-height: 2.29606rem;
  padding: 0rem 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  background: #3C7974;
}

.footer {
  padding-top: 50px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55.5%, #fff), to(#d5f5f0));
  background: linear-gradient(180deg, #fff 55.5%, #d5f5f0 100%);
}
.footer__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #3c7974;
  position: relative;
  padding-bottom: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.footer__title::after {
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#75c6bb), to(#477e7a));
  background: linear-gradient(90deg, #75c6bb 0%, #477e7a 100%);
  border-radius: 50px;
  -webkit-animation: 20s ease 0s infinite normal none running bganimation;
          animation: 20s ease 0s infinite normal none running bganimation;
  position: absolute;
  bottom: 0px;
  height: 4px;
  width: 100%;
  right: 0;
}
.footer .btn {
  margin-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  border-radius: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #3C7974 !important;
  gap: 10px;
}
.footer .btn:focus, .footer .btn:hover, .footer .btn:active {
  background-color: #0D121C !important;
  color: #fff !important;
  border-color: transparent !important;
}
.footer__iconslinks {
  padding-top: 27px;
  list-style: none;
  padding-right: 0;
}
.footer__iconslinks li {
  margin-bottom: 15px;
}
.footer__iconslinks li a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: unset;
  transition: all 0.3s ease-in-out;
}
.footer__iconslinks li a span {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: #00A19C;
}
.footer__iconslinks li a img {
  -webkit-padding-end: 11px;
          padding-inline-end: 11px;
}
.footer__iconslinks li a:hover span {
  color: #6B7280;
}
.footer__iconslinks li a:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(84%) sepia(50%) saturate(386%) hue-rotate(109deg) brightness(85%) contrast(81%);
          filter: brightness(0) saturate(100%) invert(84%) sepia(50%) saturate(386%) hue-rotate(109deg) brightness(85%) contrast(81%);
}
.footer__links {
  margin-top: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__links li {
  list-style-type: disc;
  color: #00A19C;
  width: 45%;
  margin: 8px 4px;
}
.footer__links li a {
  font-size: 15px;
  font-style: normal;
  text-decoration: unset;
  color: #00A19C;
  font-weight: 500;
  line-height: 161%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer__links li a:hover {
  color: #6B7280;
}
@media screen and (width >= 320px) and (width < 768px) {
  .footer__links {
    display: block;
    margin-top: 0;
    width: 100%;
  }
  .footer__links li {
    width: 100%;
    margin: 8px 0;
  }
}
.footer__qrcodeapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
}
.footer__qrcodeapp .footer__box {
  margin-bottom: 10px;
}
.footer__qrcodeapp .footer__box img {
  border-radius: 8.176px;
  border: 0.818px solid #d6d6d6;
  padding: 8px;
  display: block;
  text-align: center;
  width: 100%;
}
.footer__qrcodeapp .footer__box span {
  padding-top: 7px;
  font-size: 13px;
  font-style: normal;
  color: #00A19C;
  display: block;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
}

.copyright {
  background: #3C7974;
  padding: 20px 0 0;
}
.copyright__text p {
  font-size: 14px;
  font-style: normal;
  -webkit-padding-start: 14px;
          padding-inline-start: 14px;
  font-weight: 400;
  line-height: 120%;
  display: inline-block;
  color: #fff;
}
.copyright__text p:last-child {
  -webkit-border-start: 1px solid #fff;
          border-inline-start: 1px solid #fff;
}
@media screen and (width >= 320px) and (width < 768px) {
  .copyright__text {
    text-align: center;
  }
  .copyright__text p {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    -webkit-border-start: none;
            border-inline-start: none;
    margin-bottom: 10px;
  }
  .copyright__text p:last-child {
    -webkit-border-start: none;
            border-inline-start: none;
  }
}
.copyright__socaillinks {
  text-align: center;
}
.copyright__socaillinks li {
  display: inline-block;
  -webkit-padding-end: 22px;
          padding-inline-end: 22px;
}
.copyright__socaillinks li a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.copyright__socaillinks li a:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(84%) sepia(50%) saturate(386%) hue-rotate(109deg) brightness(85%) contrast(81%);
          filter: brightness(0) saturate(100%) invert(84%) sepia(50%) saturate(386%) hue-rotate(109deg) brightness(85%) contrast(81%);
}
@media screen and (width >= 320px) and (width < 768px) {
  .copyright__socaillinks {
    margin-top: 10px;
  }
  .copyright__socaillinks li {
    -webkit-padding-end: 10px;
            padding-inline-end: 10px;
  }
  .copyright__socaillinks li:last-child {
    -webkit-padding-end: 0;
            padding-inline-end: 0;
  }
}

.helper-buttons {
  position: fixed;
  left: 0;
  bottom: 200px;
  z-index: 1111;
}
.helper-buttons .btn {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 0 20px 20px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(157, 157, 157, 0.09);
          box-shadow: 0px 4px 4px 0px rgba(157, 157, 157, 0.09);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
}
.helper-buttons .btn img {
  -o-object-fit: cover;
  object-fit: cover;
}
.helper-buttons .btn:hover {
  background: #00A19C;
}
.helper-buttons .btn:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

@-webkit-keyframes bganimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bganimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
[dir=rtl] .two-column-list li {
  position: relative;
}
[dir=rtl] .two-column-list li::after {
  right: 0;
  left: unset;
}
[dir=rtl] .me-2,
[dir=rtl] .me-3 {
  margin-left: 0.5rem !important;
  margin-right: 0 !important;
}
[dir=rtl] .me-auto {
  margin-left: auto !important;
  margin-right: 0 !important;
}
[dir=rtl] .ms-auto {
  margin-right: auto !important;
  margin-left: 0 !important;
}