/*---------------------------------------
    Theme Name: 
    Description: 
    Author Name: 
    Author URI:  
    Theme URI: 
    Version: 1.0
-----------------------------------------
    Table of contents
-----------------------------------------
    1 Base Style
        1.1 Functions
        1.2 Variables
        1.3 Mixins
        1.4 Global
    2 Modules Style
        2.1 Hero
        2.2 Header
        2.3 Logo
        2.4 List
        2.5 Nav
        2.6 Primary Nav
        2.7 Nav Toggler
        2.8 Nice Select
        2.9 Form Control
        2.10 Primary Submenu Toggler
        2.11 Preloader
        2.12 Back To Top
        2.13 Button Style
        2.15 Section 
    3 Theme Style
        3.1 Color
        3.2 Background
        3.3 Padding
        3.4 Margin
        3.5 Utility Classes
        3.6 Animation
    4. Layouts Style
        4.1 Course Section
        4.2 Feedback Section
        4.3 CTA Section
        4.4 Footer 1
        4.5 Service Section

/*---------------------------------------
    0.1 Base Style
-----------------------------------------*/
/*---------------------------------------
    1. Global
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Roboto:wght@400;500&display=swap");

:root {
  --h1: clamp(2.8125rem, 4vw + 1rem, 4.209rem);
  --h2: clamp(2.0625rem, 3vw + 1rem, 3.1575rem);
  --h3: clamp(1.675rem, 2.7vw + 0.5rem, 2.369rem);
  --h4: 1.777rem;
  --h5: clamp(1.2rem, 2.2vw, 1.333rem);
  --h6: 1rem;
  --r: 68;
  --g: 109;
  --b: 255;
  --dark-r: 0;
  --dark-g: 0;
  --dark-b: 0;
  --light-r: 255;
  --light-g: 255;
  --light-b: 255;
  --border: 0 0% 88%;
  --dark: var(--dark-r) var(--dark-g) var(--dark-b);
  --alter-light: 225 75% 98%;
  --alter-light-dark: 225 50% 96%;
  --danger: 358 91% 66%;
}

html {
  font-size: 16px;
}

body {
  position: relative;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(0, 40, 78, 0.7);
}

footer {
  margin-top: auto;
}

p {
  margin-bottom: 1.5rem;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 1.5rem 0 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1.15;
  color: #171514;
}

h1 {
  margin-top: 0;
  font-size: var(--h1);
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

h4 {
  font-size: var(--h4);
}

h5 {
  font-size: var(--h5);
}

h6 {
  font-size: var(--h6);
}

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

.lg-text {
  font-size: 18px;
}

.xl-text {
  font-size: 20px;
}

.xxl-text {
  font-size: 24px;
}

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

.fw-md {
  font-weight: 500;
}

.lh-1 {
  line-height: 1;
}

.hr {
  background-color: rgba(var(--r), var(--g), var(--b), 1);
}

button:focus {
  outline: none !important;
}

.btn:focus,
.btn.focus {
  outline: none;
  box-shadow: none;
}

input:focus {
  outline: none;
}

textarea {
  resize: none;
}

@media screen and (min-width: 1600px) {
  .container-restricted {
    max-width: 1540px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/*---------------------------------------
    0.2 Modules Style
-----------------------------------------*/
/*---------------------------------------
    2.1 Hero
-----------------------------------------*/
.hero {
  display: flex;
  flex-direction: column;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/hero.png);
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .hero {
    min-height: 85.5vh;
  }
}

@media screen and (min-width: 992px) {
  .hero {
    min-height: 100vh;
  }
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(
    to right,
    rgba(0, 15, 92, 0.2),
    rgba(0, 15, 92, 0.2)
  );
  mix-blend-mode: multiply;
  z-index: -1;
}

.hero__img {
  position: relative;
}

@media screen and (min-width: 1600px) {
  .hero__img-is {
    width: 750px;
    max-width: 750px;
    height: 750px;
    object-fit: contain;
  }
}

.hero__content {
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: auto;
  margin-bottom: auto;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .hero__content {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .hero__content-title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .hero__content-title {
    font-size: 30px;
  }
}

.hero__content-para {
  max-width: 42ch;
}

.hero__btn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/*---------------------------------------
    2.2 Header
-----------------------------------------*/
.header {
  padding: 15px 0;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 992px) {
  .header {
    padding: 0;
  }
}

.header__top {
  padding: 13px 45px;
  position: relative;
  background: #f7f9fb;
}

@media screen and (min-width: 992px) {
  .header__top {
    padding: 12px 25px;
  }
}

@media screen and (min-width: 1200px) {
  .header__top {
    padding: 12px 45px;
  }
}

.header--primary {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  transition: all 0.6s ease;
  background: #fff;
  z-index: 9999;
}

@media screen and (min-width: 992px) {
  .header--primary {
    background: transparent;
  }
}

.header--secondary {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
  transition: all 0.6s ease;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.027);
  z-index: 9999;
}

@media screen and (min-width: 992px) {
  .header--secondary .primary-menu__link {
    color: rgb(var(--dark));
    font-size: 14px;
  }

  .header--secondary .primary-menu__link:hover {
    color: rgb(var(--r), var(--g), var(--b));
  }

  .header--secondary .primary-menu__list.has-sub:hover .primary-menu__link {
    color: rgb(var(--r), var(--g), var(--b));
  }

  .header--secondary .select-lang .form-select {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    box-shadow: none;
    font-size: 14px;
    padding: 0;
    padding-right: 20px;
    background-position: right 0.1rem center;
    border: none;
    background-color: transparent;
  }

  .header--primary .select-lang .form-select {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    box-shadow: none;
    font-size: 16px;
    padding: 0;
    padding-right: 20px;
    background-position: right 0.1rem center;
    border: none;
    background-color: transparent;
    color: #ffffff;
  }

  .header--primary .select-lang .form-select option {
    color: rgb(var(--dark));
  }

  .primary-submenu-toggler
    .primary-menu__list.has-sub.active
    .primary-menu__link {
    color: rgb(var(--dark)) !important;
  }
}

.header--secondary .select-lang .form-select:focus {
  box-shadow: none;
}

.header--primary .select-lang .form-select:focus {
  box-shadow: none;
}

/*---------------------------------------
    2.3 Logo
-----------------------------------------*/
.logo {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 140px;
  height: 46px;
  font-size: 24px;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  letter-spacing: 0.03em;
}

.logo:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

@media screen and (min-width: 992px) {
  .logo {
    height: 64px;
    max-width: 220px;
  }
}

.logo__is {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*---------------------------------------
    2.4 List
-----------------------------------------*/
.list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list__item {
  position: relative;
}

.list--row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.list--row-sm {
  gap: 0.5rem;
}

.list--row-xl {
  gap: 2rem;
}

.list--row__item:last-child {
  margin-right: 0;
}

.list--row__item-sm {
  margin-top: 2px;
  margin-bottom: 2px;
  margin-right: 0.5rem;
}

.list--row__item-sm:last-child {
  margin-right: 0;
}

.list--row__item-xl {
  margin-top: 2px;
  margin-bottom: 2px;
  margin-right: 2rem;
}

.list--row__item-xl:last-child {
  margin-right: 0;
}

.list--column {
  flex-direction: column;
}

.list--column__item {
  margin-bottom: 1rem;
}

.list--column__item:last-child {
  margin-bottom: 0;
}

.list--column__item-sm {
  margin-bottom: 0.5rem;
}

.list--column__item-sm:last-child {
  margin-bottom: 0;
}

.list--column__item-xl {
  margin-bottom: 2rem;
}

.list--column__item-xl:last-child {
  margin-bottom: 0;
}

.list--primary li {
  position: relative;
  display: flex;
  align-items: center;
}

.list--primary li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  margin-right: 14px;
  background: rgba(var(--r), var(--g), var(--b), 1);
}

.list--base li {
  position: relative;
  display: flex;
  align-items: center;
}

.list--base li::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  line-height: 10px;
  border-radius: 50%;
  margin-right: 15px;
  background-color: rgba(var(--r), var(--g), var(--b), 1);
  box-shadow: 0 0 0 5px rgba(var(--r), var(--g), var(--b), 0.2);
}

/*---------------------------------------
    2.5 Nav
-----------------------------------------*/
.navs {
  min-width: 200px;
  position: absolute;
  top: calc(100% + 20px);
  left: 15px;
  right: 15px;
  border-radius: 5px;
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
  z-index: -9999;
  box-shadow: 0 5px 10px 0 rgb(var(--dark) / 0.2);
  /* border: 2px solid rgb(var(--r), var(--g), var(--b)); */
}

@media screen and (min-width: 992px) {
  .navs {
    display: flex;
    align-items: center;
    min-width: auto;
    position: relative;
    top: auto;
    right: auto;
    visibility: visible;
    opacity: 1;
    z-index: 9998;
    background: transparent;
    box-shadow: none;
  }

  .navs::after {
    display: none;
  }
}

.navs::after {
  content: "";
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f7f9fb;
  position: absolute;
  top: -20px;
  right: 10px;
}

.navs--toggle {
  padding: 3px 5px;
  border-radius: 2px;
  border: 1px solid #f7f9fb;
  font-size: 24px;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  line-height: 1;
  transition: all 0.3s ease;
}

.navs--toggle:hover {
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  color: #222736;
}

/*---------------------------------------
    2.6 Primary Menu
-----------------------------------------*/
.primary-menu {
  flex-direction: column;
}

@media screen and (min-width: 992px) {
  .primary-menu {
    flex-direction: row;
  }
}

.primary-menu--dark {
  background: #222736;
}

@media screen and (min-width: 992px) {
  .primary-menu--dark .primary-menu__link {
    font-size: 14px;
    color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  }
}

.primary-menu__list {
  position: relative;
}

@media screen and (min-width: 992px) {
  .primary-menu__list:first-child {
    padding-left: 1rem;
  }

  .primary-menu__list:last-child {
    margin-right: 0;
  }
}

.primary-menu__list.has-sub:hover .primary-menu__link {
  border-bottom: 1px solid transparent;
}

@media screen and (min-width: 992px) {
  .primary-menu__list.has-sub:hover .primary-menu__link {
    border-bottom: none;
    color: #ffffff;
  }
}

@media screen and (min-width: 992px) {
  .primary-menu__list.has-sub:hover .primary-menu__link::after {
    content: "\f106";
  }
}

@media screen and (min-width: 992px) {
  .primary-menu__list.has-sub:hover .primary-menu__sub {
    top: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    z-index: 9999 !important;
  }
}

.primary-menu__list.has-sub .primary-menu__link::after {
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  line-height: 1;
  display: inline-block;
  position: absolute;
  right: 15px;
  font-size: 12px;
}

@media screen and (min-width: 992px) {
  .primary-menu__list.has-sub .primary-menu__link::after {
    position: relative;
    right: -4px;
    top: 0;
  }
}

.primary-menu__link {
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
  transition: 0;
  font-family: "Poppins", sans-serif;
  color: #222736;
}
.primary-submenu-toggler
  .primary-menu__list.has-sub.active
  .primary-menu__link {
  border: 0;
}
.primary-menu__sub-list:first-child .primary-menu__sub-link {
  transition: none !important;
}

.primary-menu__link:focus-visible {
  border: 0 !important;
}

@media screen and (min-width: 992px) {
  .primary-menu__link {
    color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
    margin-left: 0;
    margin-right: 0;
    font-size: 14px;
    font-weight: 500;
    border-bottom: none;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-nav {
    gap: 1.5rem;
  }

  .fixed-header .header-fixed {
    background: #fff;
  }
}

@media screen and (min-width: 1200px) {
  .primary-menu__link {
    font-size: 16px;
  }
}

.primary-menu__link:hover {
  color: rgba(var(--r), var(--g), var(--b), 1);
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  .primary-menu__link:hover {
    color: #fff;
  }
}

.primary-menu--alt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 0.7rem;
}

@media screen and (min-width: 568px) {
  .primary-menu--alt {
    flex-direction: row;
    align-items: center;
  }
}

@media screen and (min-width: 992px) {
  .primary-menu--alt {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .primary-menu--alt .primary-menu__list {
    margin-bottom: 0;
  }
}

.primary-menu--alt .primary-menu__list:last-child {
  margin-bottom: 0;
}

.primary-menu--alt .list--row__item {
  margin-right: 0;
}

@media screen and (min-width: 992px) {
  .primary-menu--alt .list--row__item {
    margin-right: 1rem;
  }

  .primary-menu--alt .list--row__item:last-child {
    margin-right: 0;
  }
}

.primary-menu__sub {
  list-style: none;
  padding: 0;
  margin-left: 15px;
  margin-right: 15px;
  z-index: -9999;
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: all 0.3s ease;
}

@media screen and (min-width: 992px) {
  .primary-menu__sub {
    min-width: 220px;
    height: auto;
    padding: 15px;
    position: absolute;
    left: 50%;
    top: calc(100% + 20px);
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
    background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
    border-radius: 5px;
    box-shadow: 0 5px 10px rgb(var(--dark) / 0.2);
  }

  .primary-menu__sub::after {
    content: "";
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-bottom: 10px solid #f7f9fb;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.primary-menu__sub-list {
  border-top-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 1px;
  border-style: solid;
  border-bottom: 1px solid rgba(34, 39, 54, 0.05);
}

@media screen and (min-width: 992px) {
  .primary-menu__sub-list {
    border-bottom: 1px solid #e0e0e0;
  }

  .primary-menu__sub-list:hover {
    border-bottom: 1px solid transparent;
  }
}

.primary-menu__sub-list:first-child {
  border-top: none;
}
.primary-menu__sub-list:first-child .primary-menu__sub-link {
  padding-top: 0;
}

.primary-menu__sub-list:first-child .primary-menu__sub-link {
  border-radius: 3px 3px 0 0;
}

.primary-menu__sub-list:last-child {
  border-bottom: none;
}
.primary-menu__sub-list:last-child .primary-menu__sub-link {
  border-radius: 0 0 3px 3px;
  padding-bottom: 0;
}
@media screen and (min-width: 992px) {
  .primary-menu__sub-list:first-child .primary-menu__sub-link {
    padding-top: 8px;
  }
  .primary-menu__sub-list:last-child .primary-menu__sub-link {
    padding-bottom: 8px;
  }
}
.primary-menu__sub-link {
  display: block;
  padding: 8px 14px;
  color: rgb(var(--dark));
  transition: all 0.3s ease;
  position: relative;
}

@media screen and (min-width: 992px) {
  .primary-menu__sub-link {
    background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
    color: #171514;
    border-radius: 3px !important;
  }
}

.primary-menu__sub-link:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

@media screen and (min-width: 992px) {
  .primary-menu__sub-link:hover {
    color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
    background-color: rgba(var(--r), var(--g), var(--b), 1);
  }
}

/*---------------------------------------
    2.7 Nav Toggler
-----------------------------------------*/
.nav-toggler .navs {
  visibility: visible;
  opacity: 1;
  z-index: 9997;
  top: calc(100% + 10px);
}

@media screen and (min-width: 992px) {
  .nav-toggler .navs {
    top: auto;
  }
}

.nav-toggler .navs--toggle {
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  color: #00284e;
}

/*---------------------------------------
    2.8 Nice Select
-----------------------------------------*/
.custom--nice-select .nice-select {
  width: 100%;
  height: 50px;
  line-height: 48px;
  border-radius: 3px;
  background: transparent;
  font-size: 16px;
}

.custom--nice-select .nice-select::after {
  height: 8px;
  width: 8px;
  margin-top: -6px;
  border-bottom: 2px solid rgba(var(--r), var(--g), var(--b), 1);
  border-right: 2px solid rgba(var(--r), var(--g), var(--b), 1);
}

.custom--nice-select .nice-select .list {
  flex-direction: column;
  background: rgba(var(--r), var(--g), var(--b), 1);
  right: 0;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 10px 10px rgb(var(--dark) / 0.02);
}

.custom--nice-select .nice-select .list .option {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.custom--nice-select .nice-select .list .option:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background: #1ab5ff;
}

.custom--nice-select .nice-select .list .selected {
  background: #0fb1ff;
}

.custom--nice-select .nice-select .current {
  color: rgba(0, 40, 78, 0.7);
}

.custom--nice-select .nice-select:active,
.custom--nice-select .nice-select.open,
.custom--nice-select .nice-select:focus {
  border-color: #e0e0e0;
}

.custom--nice-select--outline .nice-select {
  border: 1px solid #f7f9fb;
}

.custom--nice-select--light .nice-select::after {
  border-bottom: 2px solid #f7f9fb;
  border-right: 2px solid #f7f9fb;
}

.custom--nice-select--light .current {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

/*---------------------------------------
    2.9 Form Control
-----------------------------------------*/
.form--control {
  height: 50px;
  line-height: 48px;
  border-radius: 3px;
  font-size: 1rem;
  border: 1px solid rgba(224, 224, 224, 0.5);
  background: #fefefe;
  color: #171514;
  transition: all 0.3s ease;
}

.form--control::placeholder {
  text-transform: capitalize;
  color: rgba(0, 15, 92, 0.5);
  font-weight: 400;
}

.form--control:focus {
  outline: none;
  border: 1px solid rgba(224, 224, 224, 0.5);
  background: rgba(247, 249, 251, 0.2);
  box-shadow: none;
}

.form--control:-webkit-autofill {
  -webkit-text-fill-color: #171514 !important;
  -webkit-box-shadow: 0 0 0px 1000px rgba(247, 249, 251, 0.2) inset;
}

.form--control-outline {
  background: transparent;
}

.form--control-outline:focus {
  background: transparent;
  outline: none;
  box-shadow: none;
}

.form--control-outline-light {
  border-color: #f7f9fb;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.form--control-outline-light::placeholder {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.form--control-outline-light:focus {
  border-color: #f7f9fb;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.form--control-outline-dark {
  border-color: #e0e0e0;
  color: #00284e;
}

.form--control-outline-dark::placeholder {
  color: rgba(0, 40, 78, 0.7);
}

.form--control-outline-dark:focus {
  border-color: #e0e0e0;
  color: #00284e;
}

.form--control-textarea {
  padding-top: 15px;
  border-radius: 3px;
  border: 1px solid rgba(224, 224, 224, 0.5);
  background: rgba(247, 249, 251, 0.2);
  color: #171514;
  transition: all 0.3s ease;
}

.form--control-textarea::placeholder {
  text-transform: capitalize;
  color: rgba(0, 15, 92, 0.5);
}

.form--control-textarea:focus {
  outline: none;
  border: 1px solid rgba(224, 224, 224, 0.5);
  background: rgba(247, 249, 251, 0.2);
  box-shadow: none;
}

.form--control[readonly] {
  background: #e6e6e6;
  border: 1px solid rgba(224, 224, 224, 0.5);
  color: rgba(var(--dark-r), var(--dark-g), var(--dark-b), 0.5);
}

.form--control[disabled] {
  background: #e6e6e6;
  border: 1px solid rgba(224, 224, 224, 0.5);
  color: rgba(var(--dark-r), var(--dark-g), var(--dark-b), 0.5);
}

.form--control[type="file"] {
  line-height: 37px;
}

.input--group {
  flex-wrap: nowrap;
}

.input-group-text {
  padding-inline: 1rem;
  border: 1px solid rgba(224, 224, 224, 0.5);
  background: #fefefe;
  color: rgba(var(--r), var(--g), var(--b), 1);
  font-size: 22px;
  line-height: 1;
}

/*---------------------------------------
    2.10 Primary Submenu Toggler
-----------------------------------------*/
.primary-submenu-toggler {
  position: relative;
}

.primary-submenu-toggler .primary-menu__list.has-sub.active {
  padding-bottom: 15px;
}

@media screen and (min-width: 992px) {
  .primary-submenu-toggler .primary-menu__list.has-sub.active {
    padding-bottom: 0;
    background: transparent;
  }
}

.primary-submenu-toggler
  .primary-menu__list.has-sub.active
  .primary-menu__link {
  color: rgba(var(--r), var(--g), var(--b), 1);
}

@media screen and (min-width: 992px) {
  .primary-submenu-toggler
    .primary-menu__list.has-sub.active
    .primary-menu__link {
    background: transparent;
    color: #fff;
  }
}

.primary-submenu-toggler .primary-menu__list.has-sub.active .primary-menu__sub {
  visibility: visible;
  opacity: 1;
  height: auto;
  z-index: 9999;
}

@media screen and (min-width: 992px) {
  .primary-submenu-toggler
    .primary-menu__list.has-sub.active
    .primary-menu__sub {
    z-index: -9999;
    visibility: hidden;
    opacity: 0;
  }
}

/*---------------------------------------
    2.11 Preloader
-----------------------------------------*/
.preloader {
  position: relative;
  display: grid;
  place-content: center;
  height: 100vh;
  background-color: #171514;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999;
}

.preloader__img {
  width: 80px;
  height: 80px;
  animation: heart_beat_img 2s infinite ease;
}

.preloader__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*---------------------------------------
    2.12 Back To Top
-----------------------------------------*/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--r), var(--g), var(--b), 1);
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  z-index: 99;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 0 5px 0 rgb(var(--dark) / 0.02);
  display: none;
}

/*---------------------------------------
    2.13 Button Style
-----------------------------------------*/
.btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.btn:hover {
  box-shadow: 0 8px 10px rgb(var(--dark) / 0.02);
}

.btn--primary {
  background: rgba(var(--r), var(--g), var(--b), 1);
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.btn--primary:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background: rgba(var(--r), var(--g), var(--b), 1);
}

.btn--secondary {
  background: #adb5bd;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.btn--secondary:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background: #a5adb6;
}

.btn--success {
  background: #0dd693;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.btn--success:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background: #0cc889;
}

.btn--danger {
  background: #f75b60;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.btn--danger:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background: #f64c52;
}

.btn--warning {
  background: #ff9f43;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.btn--warning:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background: #ff9734;
}

.btn--info {
  background: #09c2de;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.btn--info:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background: #08b5cf;
}

.btn--dark {
  background: #222736;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.btn--dark:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background: #1c202d;
}

.btn--light {
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  color: rgba(var(--r), var(--g), var(--b), 1);
}

.btn--light:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background: #222736;
}

.btn--base {
  background-color: rgba(var(--r), var(--g), var(--b), 1);
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.btn--base:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background-color: rgba(var(--r), var(--g), var(--b), 1);
}

.btn--accent {
  background: #171514;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.btn--accent:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background: #171514;
}

.btn--sqr {
  line-height: 1;
  padding: 0.75rem;
  font-size: 20px;
}

.btn--circle {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn--video {
  animation: btnVideo 1.5s infinite linear;
}

.btn--sm {
  padding: 0.3rem 1rem;
}

.btn--md {
  padding: 0.5rem 1rem;
}

.btn--lg {
  padding: 0.625rem 1.25rem;
}

.btn--xl {
  padding: 0.75rem 1.5rem;
}

.btn--xxl {
  padding: 1rem 2rem;
}

.btn--outline {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(var(--r), var(--g), var(--b), 1);
  color: rgba(var(--r), var(--g), var(--b), 1);
  background: transparent;
}

.btn--outline:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background-color: rgba(var(--r), var(--g), var(--b), 1);
}

.btn--outline.active {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background-color: rgba(var(--r), var(--g), var(--b), 1);
}
.btn--base.fixed-width {
  width: 135px;
}
.btn--custom {
  width: 135px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 25px;
  padding-right: 25px;
  background: #0b0b0c;
  border: 1px solid #0b0b0c;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  font-size: 14px;
}

.btn--custom:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background: #233885;
  border: 1px solid #0b0b0c;
}

.btn--custom.active {
  background: #0b0b0c;
  border: 1px solid #0b0b0c;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.btn--login {
  width: 135px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 25px;
  padding-right: 25px;
  background: transparent;
  border: 1px solid rgb(var(--r), var(--g), var(--b));
  color: rgb(var(--r), var(--g), var(--b));
  font-size: 14px;
}

@media screen and (min-width: 992px) {
  .btn--login {
    border: 1px solid rgba(var(--light-r), var(--light-g), var(--light-b), 1);
    color: #fff;
    background: transparent;
  }
}

.btn--login:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background: rgb(var(--r), var(--g), var(--b));
  border: 2px solid rgb(var(--r), var(--g), var(--b));
}

@media screen and (min-width: 992px) {
  .btn--login:hover {
    border: 1px solid rgb(var(--r), var(--g), var(--b));
  }
}

.btn--login.active {
  background: rgb(var(--r), var(--g), var(--b));
  border: 2px solid rgb(var(--r), var(--g), var(--b));
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

@media screen and (min-width: 992px) {
  .btn--login.active {
    padding: 0;
    border: none;
    background: transparent;
  }
}

/*---------------------------------------
    2.14 Section 
-----------------------------------------*/
.section {
  padding-top: clamp(50px, 5vw, 80px);
  padding-bottom: clamp(50px, 5vw, 80px);
}

.section--sm {
  padding-top: clamp(30px, 4vw, 50px);
  padding-bottom: clamp(30px, 4vw, 50px);
}

.section--top {
  padding-top: clamp(50px, 5vw, 80px);
}

.section--bottom {
  padding-bottom: clamp(50px, 5vw, 80px);
}

.section__head {
  padding-bottom: clamp(30px, 4vw, 50px);
}

.section__para {
  max-width: 55ch;
}

.section__subtitle {
  display: inline-block;
  position: relative;
  letter-spacing: 0.03em;
  font-family: "Poppins", sans-serif;
  color: rgba(var(--r), var(--g), var(--b), 1);
}

.section__img {
  position: relative;
  isolation: isolate;
}

@media screen and (min-width: 1200px) {
  .section__img::after {
    content: "";
    width: 250px;
    height: 250px;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    outline: 50px solid rgba(var(--r), var(--g), var(--b), 0.25);
  }
}

@media screen and (min-width: 1200px) {
  .section__img--right::after {
    right: -30px;
    top: 0;
  }
}

@media screen and (min-width: 1600px) {
  .section__img--right::after {
    right: -50px;
    top: 0;
  }
}

@media screen and (min-width: 1200px) {
  .section__img--left::after {
    left: -30px;
    top: 0;
  }
}

@media screen and (min-width: 1600px) {
  .section__img--left::after {
    left: -50px;
    top: 0;
  }
}

/*---------------------------------------
    2.15 Icon
-----------------------------------------*/
.icon {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.icon--circle {
  border-radius: 50%;
  text-align: center;
}

.icon--sqr {
  border-radius: 5px;
  text-align: center;
}

.icon--xs {
  width: 35px;
  height: 35px;
  line-height: 1;
  font-size: 16px;
}

.icon--sm {
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 22px;
}

.icon--md {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
}

.icon--lg {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 28px;
}

.icon--xl {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 30px;
}
@media (max-width: 575px) {
  .icon--xl {
    width: 50px;
    height: 50px;
    line-height: 55px;
    font-size: 18px;
  }
}

.icon--xxl {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 40px;
}

.icon--exl {
  width: 120px;
  height: 120px;
  line-height: 120px;
  font-size: 40px;
}

.work-step:hover .icon__notification {
  color: rgba(var(--r), var(--g), var(--b), 0.5);
  z-index: 1;
}

.icon__notification {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: "Poppins", sans-serif;
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
  color: rgba(var(--r), var(--g), var(--b), 0.08);
  transition: all 0.3s ease;
}

/* Social Icon Style  */
.social-icon {
  text-decoration: none;
}

.social-icon i,
.social-icon span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  transition: all 0.3s ease;
  background: rgb(var(--r), var(--g), var(--b));
  color: #fff;
}

.social-icon i:hover,
.social-icon span:hover {
  box-shadow: 0 5px 15px 0 rgb(var(--dark) / 0.3);
}

/* Facebook Icon */
.social-icon [class*="facebook"] {
  background: #1877f2;
  color: #fff;
}

/* Linked In  */
.social-icon [class*="linkedin"] {
  background: #0077b5;
  color: #fff;
}

/* Instagram */
.social-icon [class*="instagram"] {
  background: #d6249f;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: #fff;
}

/* Twitter */
.social-icon [class*="twitter"] {
  background: #1da1f2;
  color: #fff;
}

/* Default Design  */
/*---------------------------------------
    2.16 Search Popup
-----------------------------------------*/
.search-popup.active .search-form {
  visibility: visible;
  opacity: 1;
  z-index: 9999;
}

.search--toggler {
  font-size: 23px;
  line-height: 1;
}

.search-popup .search-form {
  min-width: 90%;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  visibility: hidden;
  opacity: 0;
  -ms-transform: translate(-50%, -50%);
  /* IE 9 */
  -webkit-transform: translate(-50%, -50%);
  /* Chrome, Safari, Opera */
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .search-popup .search-form {
    min-width: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .search-popup .search-form {
    min-width: 40%;
  }
}

.search-popup .search-form .form-group .form-control {
  border: none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  height: 55px;
  padding: 0 100px 0 30px;
}

.search-popup .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 55px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: rgba(var(--r), var(--g), var(--b), 1);
  transition: all 0.3s ease;
  padding: 0;
  text-align: center;
  border: 0;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.search-popup .search-form .submit-btn:hover {
  background: #171514;
  cursor: pointer;
}

.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(var(--dark-r), var(--dark-g), var(--dark-b), 0.6);
  z-index: 9998;
  content: "";
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),
    progress;
}

.body-overlay.active {
  visibility: visible;
  opacity: 0.8;
}

/*---------------------------------------
    2.17 Widget
-----------------------------------------*/
.widget {
  padding: 30px 15px;
  border-radius: 10px;
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  box-shadow: 0 5px 10px 0 rgb(var(--dark) / 0.02);
}

@media screen and (min-width: 1400px) {
  .widget {
    padding: 40px 30px;
  }
}

.widget__title {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .widget__title {
    margin-bottom: 15px;
  }
}

.widget-title {
  border-bottom: 1px dashed rgba(var(--r), var(--g), var(--b), 0.5);
  padding-bottom: 1rem;
  margin-bottom: 1rem !important;
}

.widget-alt__head {
  padding: 15px 30px;
  border-radius: 5px 5px 0 0;
  background: rgba(var(--r), var(--g), var(--b), 1);
}

.widget-alt__body {
  background: #f7f9fb;
  padding: 15px 30px;
}

/*---------------------------------------
    2.18 Widget Category
-----------------------------------------*/
.widget-category__item {
  border-bottom: 1px dashed rgba(var(--r), var(--g), var(--b), 0.5);
}

.widget-category__item:last-child {
  border-bottom: none;
}

.widget-category__item:last-child .vh-widget-category__link {
  padding-bottom: 0;
}

.widget-category__link {
  display: inline-block;
  padding-bottom: 1rem;
  color: #00284e;
  transition: all 0.3s ease;
}

.widget-category__link:hover {
  color: rgba(var(--r), var(--g), var(--b), 1);
}

/*---------------------------------------
    2.19 User
-----------------------------------------*/
.user {
  display: flex;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .user {
    gap: 1.5rem;
  }
}

.user__img {
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.user__img--sm {
  width: 35px;
  height: 35px;
}

.user__img--md {
  width: 45px;
  height: 45px;
}

.user__img--lg {
  width: 60px;
  height: 60px;
}

.user__img--xl {
  width: 80px;
  height: 80px;
}

.user__img--xxl {
  width: 100px;
  height: 100px;
}

.user__img-is {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.user__content {
  flex-grow: 1;
}

/*---------------------------------------
    2.20 Banner
-----------------------------------------*/
.banner {
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(
    to right,
    rgba(var(--dark-r), var(--dark-g), var(--dark-b), 0.6),
    rgba(var(--dark-r), var(--dark-g), var(--dark-b), 0.5)
  );
  mix-blend-mode: darken;
  z-index: -1;
}

.banner__content {
  padding-top: clamp(50px, 8vw, 80px);
  padding-bottom: clamp(50px, 8vw, 80px);
  margin-top: auto;
  margin-bottom: auto;
}

/*---------------------------------------
    2.21 Table
-----------------------------------------*/
/* table css start */
.custom--table {
  margin-bottom: 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px 0 rgb(var(--dark) / 0.02);
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.custom--table > :not(:first-child) {
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 1px;
  border-style: solid;
  border-color: rgba(var(--r), var(--g), var(--b), 0.05);
}

.custom--table > :not(caption) > * > * {
  border-bottom-width: 0;
}

.custom--table thead {
  background-color: rgba(var(--r), var(--g), var(--b), 1);
}

.custom--table thead th {
  padding: 0.75rem 1.25rem;
  font-family: "Poppins", sans-serif;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  text-align: center;
  font-weight: 500;
  vertical-align: middle;
}

.custom--table thead th:first-child {
  border-radius: 10px 0 0 0;
  text-align: left;
}

.custom--table thead th:last-child {
  border-radius: 0 10px 0 0;
  text-align: right;
}

.custom--table tbody td {
  border-top: none;
  border-top-width: 0px;
  border-left-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 1px;
  border-style: solid;
  border-color: rgba(var(--r), var(--g), var(--b), 0.05);
  padding: 15px 20px;
  font-family: "Poppins", sans-serif;
  color: #00284e;
  text-align: center;
  vertical-align: middle;
}

.custom--table tbody td:first-child {
  text-align: left;
}

.custom--table tbody td:last-child {
  text-align: right;
}

.custom--table tbody tr:nth-child(odd) {
  background-color: rgba(var(--dark-r), var(--dark-g), var(--dark-b), 0.01);
}

.custom--table tbody tr:last-child td {
  border-bottom: none;
}

.custom--table [data-label] {
  position: relative;
}

.custom--table [data-label]::before {
  position: absolute;
  content: attr(data-label);
  font-weight: 500;
  left: 0;
  padding: 0.8125rem 0.9375rem;
  display: none;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.custom--table__header {
  padding: 0.8125rem 0.9375rem;
  border-radius: 10px 10px 0 0;
  background-color: rgba(var(--r), var(--g), var(--b), 1);
}

@media screen and (min-width: 992px) {
  .custom--table__header {
    padding: 0;
    border-radius: 0;
    background: transparent;
  }
}

@media screen and (max-width: 991px) {
  .custom--table__header {
    width: 100%;
  }
}

.custom--table__header > * {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

@media screen and (min-width: 992px) {
  .custom--table__header > * {
    color: #171514;
  }
}

@media (max-width: 991px) {
  .table-responsive--md thead {
    display: none;
  }

  .table-responsive--md tbody tr:nth-child(odd) {
    background-color: rgba(var(--dark-r), var(--dark-g), var(--dark-b), 0.01);
  }

  .table-responsive--md tbody tr:last-child td {
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-top-width: 1px 0.05;
    border-style: solid;
    border-color: rgba(var(--r), var(--g), var(--b), 1);
  }

  .table-responsive--md tbody tr td {
    padding-right: 15px;
  }

  .table-responsive--md tbody tr td:last-child {
    padding-right: 15px;
  }

  .table-responsive--md tr th,
  .table-responsive--md tr td {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 45% !important;
    text-align: right !important;
  }

  .table-responsive--md tr th:first-child,
  .table-responsive--md tr td:first-child {
    border-top: none !important;
  }

  .table-responsive--md [data-label]::before {
    display: block;
    color: #00284e;
    font-weight: 500;
  }
}

@media (max-width: 767px) {
  .table-responsive--sm thead {
    display: none;
  }

  .table-responsive--sm tbody tr:nth-child(odd) {
    background-color: rgba(var(--dark-r), var(--dark-g), var(--dark-b), 0.01);
  }

  .table-responsive--sm tbody tr td {
    padding-right: 15px;
  }

  .table-responsive--sm tbody tr td:last-child {
    padding-right: 15px;
  }

  .table-responsive--sm tr th,
  .table-responsive--sm tr td {
    display: block;
    padding-left: 45% !important;
    text-align: right !important;
    border-top-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 1px;
    border-style: solid;
    border-color: rgba(var(--r), var(--g), var(--b), 0.05);
  }

  .table-responsive--sm tr th:first-child,
  .table-responsive--sm tr td:first-child {
    border-top: none !important;
  }

  .table-responsive--sm [data-label]::before {
    display: block;
    color: #00284e;
    font-weight: 500;
  }
}

/* table css end */
/*---------------------------------------
    2.22 Accordion
-----------------------------------------*/
.custom--accordion .accordion-header {
  margin-top: 0;
}

.custom--accordion .accordion-item {
  border-radius: 0 !important;
  margin-bottom: 15px;
  background: transparent;
  color: #00284e;
  border: 0;
}

.custom--accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.custom--accordion .accordion-button {
  padding: 10px 20px;
  border-radius: 3px;
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(var(--dark-r), var(--dark-g), var(--dark-b), 0.05);
  box-shadow: 0 5px 10px 0 rgb(var(--dark) / 0.02);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #171514;
}

.custom--accordion .accordion-button:focus {
  border-color: rgba(var(--dark-r), var(--dark-g), var(--dark-b), 0.05);
  box-shadow: 0 5px 10px 0 rgb(var(--dark) / 0.02);
}

.custom--accordion .accordion-button[aria-expanded="true"]::after {
  content: "\f106";
}

.custom--accordion .accordion-button[aria-expanded="false"]::after {
  content: "\f107";
}

.custom--accordion .accordion-button::after {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  text-align: center;
  background-image: initial !important;
  transform: rotate(0deg) !important;
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 24px;
  color: #171514;
  line-height: 1;
}

.custom--accordion .accordion-button:not(.collapsed) {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(var(--dark-r), var(--dark-g), var(--dark-b), 0.05);
  box-shadow: 0 5px 10px 0 rgb(var(--dark) / 0.02);
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background-image: initial !important;
  color: #171514;
}

.custom--accordion .accordion-button:not(.collapsed)::after {
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  color: #171514;
}

.custom--accordion .accordion-body {
  margin-top: 15px;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(var(--dark-r), var(--dark-g), var(--dark-b), 0.05);
  box-shadow: 0 5px 10px 0 rgb(var(--dark) / 0.02);
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  color: #171514;
}

/*---------------------------------------
    2.23 Badge
-----------------------------------------*/
.badge {
  border-radius: 2px;
}

.badge--primary {
  background: rgba(51, 189, 255, 0.15);
  border: 1px solid rgba(var(--r), var(--g), var(--b), 1);
  color: rgba(var(--r), var(--g), var(--b), 1);
}

.badge--secondary {
  background: rgba(173, 181, 189, 0.15);
  border: 1px solid #adb5bd;
  color: #adb5bd;
}

.badge--danger {
  background: rgba(247, 91, 96, 0.15);
  border: 1px solid #f75b60;
  color: #f75b60;
}

.badge--success {
  background: rgba(13, 214, 147, 0.15);
  border: 1px solid #0dd693;
  color: #0dd693;
}

.badge--warning {
  background: rgba(255, 159, 67, 0.15);
  border: 1px solid #ff9f43;
  color: #ff9f43;
}

.badge--info {
  background: rgba(9, 194, 222, 0.15);
  border: 1px solid #09c2de;
  color: #09c2de;
}

.badge--dark {
  background: rgba(83, 96, 132, 0.15);
  border: 1px solid #536084;
  color: #536084;
}

/*---------------------------------------
    2.24 Form Select
-----------------------------------------*/
.form--select-light {
  width: 100%;
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(224, 224, 224, 0.5);
  background: rgba(247, 249, 251, 0.2);
  border-radius: 3px;
}

.form--select-light::after {
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  color: #171514;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  z-index: -1;
}

.form--select-light .form--select {
  color: #171514;
}

.form--select-light .form--select-sm {
  color: #171514;
}

.form--select-dark {
  position: relative;
  isolation: isolate;
  border-radius: 3px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(var(--r), var(--g), var(--b), 1);
  background-color: rgba(var(--r), var(--g), var(--b), 1);
}

.form--select-dark::after {
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  z-index: -1;
}

.form--select-dark .form--select {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background-color: rgba(var(--r), var(--g), var(--b), 0.5);
  font-weight: 400;
  z-index: 1;
}

.form--select-dark .form--select:focus {
  background-color: rgba(var(--r), var(--g), var(--b), 1);
}

.form--select-dark .form--select-sm {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  background-color: rgba(var(--r), var(--g), var(--b), 0.5);
  z-index: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}

.form--select-dark .form--select-sm:focus {
  background-color: rgba(var(--r), var(--g), var(--b), 1);
}

.form--select {
  height: 48px;
  border-radius: 3px;
  border-radius: 2px;
  background: transparent;
  border: none;
  position: relative;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.form--select:focus {
  border: none;
  box-shadow: none;
  z-index: -1;
}

.form--select-sm {
  border-radius: 3px;
  border-radius: 2px;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
}

.form--select-sm:focus {
  border: none;
  background: inherit;
  box-shadow: none;
  z-index: -1;
}

/*---------------------------------------
    2.25 Custom Check
-----------------------------------------*/
.custom--check {
  border-radius: 1px !important;
  border: 1px solid #e0e0e0;
  background: #f7f9fb;
}

.custom--check:checked {
  background-color: rgba(var(--r), var(--g), var(--b), 1);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(var(--r), var(--g), var(--b), 0.5);
}

.custom--check:focus {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(var(--r), var(--g), var(--b), 0.5);
  box-shadow: none;
}

/*---------------------------------------
    2.26 Breadcrumbs
-----------------------------------------*/
.breadcrumbs {
  align-items: center;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  position: relative;
}

.breadcrumbs__item::after {
  content: "";
  position: relative;
  display: inline-block;
  right: -1rem;
  height: 16px;
  width: 2px;
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  transform: skew(-25deg);
}

.breadcrumbs__item:last-child {
  margin-right: 0;
}

.breadcrumbs__item:last-child::after {
  display: none;
}

.breadcrumbs__link {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.breadcrumbs__link:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

/*---------------------------------------
    2.27 Custom Pagination
-----------------------------------------*/
.pagination {
  margin-bottom: 0;
}

.pagination .page-item {
  margin-right: 1rem;
}

.pagination .page-item.active .page-link {
  background-color: rgba(var(--r), var(--g), var(--b), 1);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(var(--r), var(--g), var(--b), 1);
}

.pagination .page-item.disabled .page-link {
  background: #ededed;
  border-color: #ededed;
}

.pagination .page-item:last-child {
  margin-right: 0;
}

.pagination .page-item:first-child .page-link {
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-content: center;
}

.pagination .page-item:last-child .page-link {
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-content: center;
}

.pagination .page-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(var(--r), var(--g), var(--b), 1);
  color: rgba(var(--r), var(--g), var(--b), 1);
  text-align: center;
  font-size: 14px;
  background: transparent;
}

.pagination .page-link:hover {
  background-color: rgba(var(--r), var(--g), var(--b), 1);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(var(--r), var(--g), var(--b), 1);
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

/*---------------------------------------
    2.28 Custom Card
-----------------------------------------*/
.custom--card {
  border-radius: 3px;
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  border: 1px solid rgba(var(--r), var(--g), var(--b), 0.1);
  box-shadow: 0 3px 5px 0 rgb(var(--dark) / 0.02);
}

.custom--card .card-header {
  padding: 1rem 1.5rem;
  background: #ffff;
  border-bottom: 1px solid rgba(var(--r), var(--g), var(--b), 0.1);
}

.custom--card .card-title {
  margin-top: 0;
  margin-bottom: 0;
}

.custom--card .card-text {
  margin-top: 1rem;
}

.custom--card .card-body {
  padding: 2rem 1.5rem;
}

.custom--card .card-footer {
  padding: 1rem 1.5rem;
  background: rgba(var(--r), var(--g), var(--b), 0.05);
  border-top: 1px solid rgba(var(--r), var(--g), var(--b), 0.1);
}

.custom--card-dark {
  border-radius: 3px;
  background: #00178f;
  border: 1px solid #001ba9;
}

.custom--card-dark .card-header {
  padding: 1rem 1.5rem;
  background: rgba(0, 15, 92, 0.5);
  border-bottom: 1px solid #001ba9;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.custom--card-dark .card-title {
  margin-top: 0;
  margin-bottom: 0;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.custom--card-dark .card-text {
  margin-top: 1rem;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.custom--card-dark .card-body {
  padding: 2rem 1.5rem;
}

.custom--card-dark .card-footer {
  padding: 1rem 1.5rem;
  background: rgba(0, 15, 92, 0.5);
  border-top: 1px solid #001ba9;
}

/*---------------------------------------
    2.29 Custom Modal
-----------------------------------------*/
.custom--modal .modal-content {
  border-radius: 5px;
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  border: 1px solid #e0e0e0;
}

.custom--modal .modal-title {
  margin-top: 0;
  color: #171514;
}

.custom--modal .btn-close {
  position: relative;
  background: transparent;
  color: #171514;
  opacity: 1;
  transition: all 0.3s ease;
}

.custom--modal .btn-close:hover {
  outline: none;
  box-shadow: none;
  color: rgba(var(--r), var(--g), var(--b), 1);
}

.custom--modal .btn-close::after {
  content: "\f00d";
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 34px;
}

.custom--modal .modal-body p {
  margin-bottom: 0;
}

.custom--modal .modal-header {
  border-bottom: 1px solid #e0e0e0;
  background: #f7f9fb;
}

.custom--modal .modal-footer {
  border-top: 1px solid #e0e0e0;
  background: #f7f9fb;
}

.custom--modal-dark .modal-content {
  border-radius: 5px;
  background: #001ba9;
  border: 1px solid #0024dc;
}

.custom--modal-dark .modal-title {
  margin-top: 0;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.custom--modal-dark .btn-close {
  position: relative;
  background: transparent;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  opacity: 1;
  transition: all 0.3s ease;
}

.custom--modal-dark .btn-close:hover {
  outline: none;
  box-shadow: none;
  color: rgba(var(--r), var(--g), var(--b), 1);
}

.custom--modal-dark .btn-close::after {
  content: "\f00d";
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 34px;
}

.custom--modal-dark .modal-body {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.custom--modal-dark .modal-header {
  border-bottom: 1px solid #0024dc;
  background: #001a9e;
}

.custom--modal-dark .modal-footer {
  border-top: 1px solid #0024dc;
  background: #001a9e;
}

/*---------------------------------------
    2.30 Fixed Header 
-----------------------------------------*/
.fixed-header .header-fixed {
  box-shadow: 0 8px 15px 0 rgb(var(--dark) / 0.02);
}

@media screen and (min-width: 992px) {
  .fixed-header .primary-menu__link {
    color: rgb(var(--dark));
  }

  .fixed-header .btn--login {
    border-color: rgb(var(--r), var(--g), var(--b));
    color: rgb(var(--r), var(--g), var(--b));
  }

  .fixed-header .btn--login:hover {
    background: rgb(var(--r), var(--g), var(--b));
    color: #fff;
  }

  .fixed-header .header--primary .select-lang .form-select {
    color: rgb(var(--dark));
  }
}

/*---------------------------------------
    2.31 User Group List
-----------------------------------------*/
.user-group-list li {
  margin-right: -25px;
}

.user-group-list li .user__img {
  box-shadow: 0 0 8px 0 rgb(var(--dark) / 0.02);
}

/*---------------------------------------
    2.32 Newsletter
-----------------------------------------*/
.newsletter {
  border-width: 2px;
  border-style: solid;
  border-color: rgba(var(--r), var(--g), var(--b), 1);
  padding: 5px;
  max-width: 550px;
}

.newsletter__container {
  display: flex;
  padding: 5px;
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.newsletter__input {
  background: transparent;
  border: none;
  color: #171514;
  font-size: 14px;
}

.newsletter__input:focus {
  color: #171514;
  outline: none;
  box-shadow: none;
  border-color: transparent;
  background-color: transparent;
  border-width: 0;
}

.newsletter__input::placeholder {
  color: #00284e;
}

/*---------------------------------------
    2.33 Select 2 Style
-----------------------------------------*/
.select2-container--open .select2-dropdown--above {
  top: 0;
  left: auto;
  right: 0;
  min-width: 100%;
}

.select2-container--open .select2-dropdown--below {
  top: 0;
  left: auto;
  right: auto;
  min-width: 100%;
}

.select2-container--default .select2-selection--single {
  border: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background: transparent;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  flex-grow: 1;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: auto;
  position: relative;
  top: auto;
  right: auto;
  width: 26px;
}

.select-container {
  background-color: rgba(var(--r), var(--g), var(--b), 1);
  border-radius: 3px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  line-height: 28px;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #fff transparent transparent transparent;
}

.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #fff transparent;
}

.select2-results__option {
  padding: 10px 15px;
}

.select2-results__option img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #e0e0e0;
}

.select2-results {
  overflow: hidden;
}

.select2-results__options {
  margin-right: -17px;
}

.select2-dropdown {
  border: 1px solid #e0e0e0;
}

.select2-container--open .select2-dropdown--below {
  border-top: 1px solid #e0e0e0;
}

.select2__flags {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

/*---------------------------------------
    2.34 Header Top
-----------------------------------------*/
.header-top {
  display: none;
}

@media screen and (min-width: 1200px) {
  .header-top {
    display: block;
    background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  }
}

.header-top__info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-top__text {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
}

.header-top__icon {
  opacity: 0.5;
}

/*---------------------------------------
    2.35 Exchange Form
-----------------------------------------*/
.exchange-form {
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 rgb(var(--dark) / 0.02);
}

.exchange-form__sub-title {
  display: block;
  margin-bottom: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

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

.exchange-form__header {
  padding: 15px;
  border-radius: 10px 10px 0 0;
  background: rgba(var(--r), var(--g), var(--b), 1);
}

.exchange-form__body {
  padding: 40px 15px;
  border-radius: 0 0 10px 10px;
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  border-width: 3px;
  border-style: solid;
  border-color: rgba(var(--r), var(--g), var(--b), 1);
}

@media screen and (min-width: 768px) {
  .exchange-form__body {
    padding: 40px 30px;
  }
}

.exchange-form__btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.exchange-form .form--control {
  border: 1px solid #e0e0e0;
  border-radius: 5px 0 0 5px;
  background: rgba(247, 249, 251, 0.2);
  color: #171514;
  font-size: 18px;
  font-weight: 500;
}

.exchange-form .form--control::placeholder {
  font-weight: 500;
  color: rgba(0, 15, 92, 0.3);
}

.exchange-form .input-group-text {
  position: relative;
  padding: 0;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(var(--r), var(--g), var(--b), 1);
}

.exchange-form__flags {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.exchange-form .select2-container--default .select2-selection--single {
  background-color: rgba(var(--r), var(--g), var(--b), 1);
  border: none;
  border-radius: 0 3px 3px 0;
  width: 125px !important;
  height: 100%;
  display: flex;
}

.exchange-form
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  flex-grow: 1;
}

.exchange-form
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 50px;
  position: relative;
  top: auto;
  right: auto;
  width: 30px;
}

.exchange-form .select2-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 125px !important;
}

.exchange-form
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  line-height: 50px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.exchange-form
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #fff transparent transparent transparent;
}

.exchange-form
  .select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #fff transparent;
}

.exchange-form .select2-results__option {
  padding: 10px 15px;
}

.exchange-form .select2-results__option img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.exchange-form
  .select2-container--default
  .select2-search--dropdown
  .select2-search__field {
  border: 1px solid #e0e0e0;
}

.exchange-form .select2-results {
  overflow: hidden;
}

.exchange-form .select2-results__options {
  margin-right: -17px;
}

.exchange-form .select2-dropdown {
  border: 1px solid #e0e0e0;
}

.exchange-form .select2-container--open .select2-dropdown--below {
  border-top: 1px solid #e0e0e0;
}

.exchange-form .input-group {
  background: transparent;
}

/*---------------------------------------
    2.36 Timeline List
-----------------------------------------*/
.timeline-list__dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(var(--r), var(--g), var(--b), 1);
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translateY(-50%);
  z-index: 2;
}

.timeline-list__dot::before {
  content: "";
  width: 1px;
  height: 170%;
  position: absolute;
  left: 50%;
  top: -170%;
  background-color: rgba(var(--r), var(--g), var(--b), 1);
}

.timeline-list__dot::after {
  content: "";
  width: 1px;
  height: 170%;
  position: absolute;
  left: 50%;
  bottom: -170%;
  background-color: rgba(var(--r), var(--g), var(--b), 1);
}

.timeline-list__content {
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 25px;
  position: relative;
  isolation: isolate;
}

.timeline-list__content::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: rgba(var(--r), var(--g), var(--b), 1);
  z-index: -1;
}

.timeline-list__right {
  padding-left: 15px;
  text-align: end;
}

/*---------------------------------------
    2.37 Features Card
-----------------------------------------*/
.features-card {
  padding: 30px 15px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  box-shadow: 0 0 15px 0 rgb(var(--dark) / 0.02);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.features-card:hover {
  box-shadow: 0 10px 15px 0 rgb(var(--dark) / 0.05);
}

@media screen and (min-width: 768px) {
  .features-card {
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 1200px) {
  .features-card {
    padding: 30px;
  }
}

@media screen and (min-width: 1400px) {
  .features-card {
    padding: 40px 30px;
    gap: 1.5rem;
  }
}

/*---------------------------------------
    2.38 Icon List
-----------------------------------------*/
.icon-list__item:last-child .icon-list__box::after {
  display: none;
}

.icon-list__box {
  display: flex;
  gap: 1.5rem;
  position: relative;
  isolation: isolate;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 575px) {
  .icon-list__box {
    gap: 1rem;
  }
}

.icon-list__box::after {
  content: "";
  position: absolute;
  left: 35px;
  height: 100%;
  border-left: 1px dashed rgba(var(--r), var(--g), var(--b), 1);
  z-index: -1;
}
@media (max-width: 575px) {
  .icon-list__box::after {
    left: 27px;
  }
}

.icon-list__para {
  max-width: 40ch;
}

/*---------------------------------------
    2.39 Rating
-----------------------------------------*/
.rating {
  position: relative;
  isolation: isolate;
  color: #ff9f43;
  font-size: 0.875rem;
  line-height: 1;
}

.rating--box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: #ff9f43;
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

/*---------------------------------------
    2.40 Feedback Card
-----------------------------------------*/
.feedback-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 30px 10px;
  height: 100%;
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  box-shadow: 0 5px 15px 0 rgb(var(--dark) / 0.02);
  border-radius: 10px;
  transition: all 0.3s ease;
}

@media screen and (min-width: 375px) {
  .feedback-card {
    padding: 30px 15px;
  }
}

@media screen and (min-width: 400px) {
  .feedback-card {
    padding: 30px 20px;
  }
}

@media screen and (min-width: 992px) {
  .feedback-card {
    padding: 50px 30px;
  }
}

@media screen and (min-width: 1920px) {
  .feedback-card {
    padding: 60px;
  }
}

@media screen and (min-width: 1400px) {
  .feedback-card__para {
    font-size: 18px;
  }
}

/*---------------------------------------
    2.41 Feedback Slider
-----------------------------------------*/
.feedback-slider__item {
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .feedback-slider__item {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (min-width: 1200px) {
  .feedback-slider__item {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1920px) {
  .feedback-slider__item {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.feedback-slider .slick-list {
  margin-bottom: -60px;
}

/*---------------------------------------
    2.42 Video Content
-----------------------------------------*/
.video-content {
  position: relative;
  isolation: isolate;
  border-radius: 10px;
  overflow: hidden;
}

.video-content::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 15, 92, 0.3);
}

.video-content__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .video-content__img {
    height: 350px;
  }
}

@media screen and (min-width: 992px) {
  .video-content__img {
    height: 500px;
  }
}

.video-content .show-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/*---------------------------------------
    2.43 Counter Up
-----------------------------------------*/
.counter-up {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 480px) {
  .counter-up {
    flex-flow: column;
    justify-content: center;
  }
}

@media screen and (min-width: 992px) {
  .counter-up {
    gap: 1.5rem;
  }
}

.counter-up__icon {
  display: grid;
  place-content: center;
  aspect-ratio: 1;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
  padding-inline-end: 15px;
}

@media screen and (min-width: 992px) {
  .counter-up__icon {
    padding-inline: 18px;
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .counter-up__icon {
    padding: 18px;
    border: 1px solid #ffffff47;
  }
}

.counter-up__counter {
  display: inline-block;
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  color: rgba(var(--r), var(--g), var(--b), 1);
}

@media screen and (min-width: 768px) {
  .counter-up__title {
    font-size: 16px;
  }
  .counter-up__counter {
    font-size: 34px;
  }
}

@media screen and (min-width: 992px) {
  .counter-up__title {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  .counter-up__title {
    font-size: 1.333rem;
  }
}

/*---------------------------------------
    2.44 Compare List
-----------------------------------------*/
.compare-list {
  width: 100%;
}

.compare-list__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .compare-list__content {
    flex-direction: row;
    gap: 0;
  }
}

.compare-list__left {
  padding: 30px;
  background: #171514;
}

@media screen and (min-width: 992px) {
  .compare-list__left {
    padding: 40px 80px;
  }
}

.compare-list__right {
  width: 100%;
  padding: 20px 30px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(var(--dark-r), var(--dark-g), var(--dark-b), 0.08);
  background: #f9fafe;
}

@media screen and (min-width: 768px) {
  .compare-list__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.compare-list__img {
  width: 230px;
  height: 50px;
  object-fit: contain;
}

.compare-list__status {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.compare-list__status::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  margin-right: 8px;
}

.compare-list__status--primary::before {
  background: rgba(var(--r), var(--g), var(--b), 1);
}

.compare-list__status--secondary::before {
  background: #adb5bd;
}

.compare-list__status--success::before {
  background: #0dd693;
}

.compare-list__status--danger::before {
  background: #f75b60;
}

.compare-list__status--info::before {
  background: #09c2de;
}

.compare-list__status--warning::before {
  background: #ff9f43;
}

.compare-list__status--dark::before {
  background: #222736;
}

/*---------------------------------------
    2.45 Work Step
-----------------------------------------*/
@media screen and (min-width: 768px) {
  .work-step .icon::after {
    display: none;
  }
}

@media screen and (min-width: 768px) and (min-width: 1400px) {
  .work-step .icon::after {
    left: calc(100% + 40px);
  }
}

/*---------------------------------------
    2.46 Blog Post
-----------------------------------------*/
.blog-post {
  position: relative;
  isolation: isolate;
  height: 100%;
  border-radius: 0 0 5px 5px;
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.blog-post__img {
  width: 100%;
  height: 250px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

@media screen and (min-width: 1200px) {
  .blog-post__img {
    height: 280px;
  }
}

.blog-post__img:hover .blog-post__img-is {
  transform: scale(1.1);
}

.blog-post__img-xl:hover .blog-post__img-is {
  transform: scale(1);
}

.blog-post__img:hover .blog-post__img-link {
  inset: 0;
  z-index: 1;
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

@media screen and (min-width: 768px) {
  .blog-post__img-xl {
    height: 400px;
  }
}

@media screen and (min-width: 1200px) {
  .blog-post__img-xl {
    height: 500px;
  }
}

@media screen and (min-width: 1366px) {
  .blog-post__img-xl {
    height: 600px;
  }
}

.blog-post__img-is {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-post__img-link {
  position: absolute;
  inset: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(var(--dark-r), var(--dark-g), var(--dark-b), 0.5);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}

.blog-post__img-link:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.blog-post__body {
  padding: 1.5rem 1rem;
  border: 1px solid rgba(var(--dark-r), var(--dark-g), var(--dark-b), 0.03);
  background: #fff;
  box-shadow: 0 5px 10px 0 rgb(var(--dark) / 0.02);
}

.blog-post__btn {
  display: inline-flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  color: rgba(0, 40, 78, 0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.blog-post__btn:hover {
  color: rgba(var(--r), var(--g), var(--b), 1);
}

.blog-post__btn:hover::after {
  right: -10px;
}

.blog-post__btn::after {
  content: "\f30b";
  font-family: "Line Awesome Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: relative;
  right: -5px;
  font-size: 24px;
  transition: all 0.3s ease;
}

.blog-post__link {
  color: #171514;
}

.blog-post__link:hover {
  color: rgba(var(--r), var(--g), var(--b), 1);
}

.blog-post__meta {
  display: flex;
  align-items: center;
}

.blog-post__meta-icon {
  font-size: 20px;
  line-height: 1;
  color: rgba(var(--r), var(--g), var(--b), 1);
}

.blog-post__meta-text {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 40, 78, 0.6);
}

/*---------------------------------------
    2.47 Client Card
-----------------------------------------*/
.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
  box-shadow: 0 0 10px 0 rgb(var(--dark) / 0.02);
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 15px;
}

.client-card__img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/*---------------------------------------
    2.48 Client Slider
-----------------------------------------*/
.client-slider__item {
  padding-left: 15px;
  padding-right: 15px;
}

/*---------------------------------------
    2.49 Contact Card
-----------------------------------------*/
.contact-card {
  display: flex;
  gap: 1rem;
}

.contact-card__icon {
  font-size: 24px;
  line-height: 1;
  color: rgba(var(--r), var(--g), var(--b), 1);
}

/*---------------------------------------
    2.50 Contact Form
-----------------------------------------*/
.contact-form {
  padding: 30px 15px;
  border-radius: 15px;
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

@media screen and (min-width: 992px) {
  .contact-form {
    padding: 45px 30px;
  }
}

@media screen and (min-width: 1400px) {
  .contact-form {
    padding: 60px 40px;
  }
}

.contact--form .form--control {
  background: hsl(var(--alter-light));
}

.contact--form .form--control:focus {
  background: hsl(var(--alter-light-dark));
}

.contact--form .form--select-light {
  background: hsl(var(--alter-light));
}

.contact--form .form--control-textarea {
  background: hsl(var(--alter-light));
}

.contact--form .form--control-textarea:focus {
  background: hsl(var(--alter-light-dark));
}

/*---------------------------------------
    2.51 Pass Toggle
-----------------------------------------*/
.pass-toggle i {
  width: 28px;
}

.pass-toggle i:hover {
  cursor: pointer;
}

.pass-toggle span {
  width: 28px;
}

.pass-toggle span:hover {
  cursor: pointer;
}

/*---------------------------------------
    2.52 Sidebar
-----------------------------------------*/
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-nav .list__item {
  border-bottom: 1px dashed rgba(var(--r), var(--g), var(--b), 0.5);
}

.sidebar-nav__link {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  border-right: 3px solid transparent;
  color: rgba(0, 15, 92, 0.8);
  font-weight: 500;
  transition: all 0.3s ease;
}

.sidebar-nav__link:hover {
  color: rgba(var(--r), var(--g), var(--b), 1);
  border-right: 3px solid rgb(var(--r), var(--g), var(--b));
}

.sidebar-nav__link.active {
  border-right: 3px solid rgb(var(--r), var(--g), var(--b));
  color: rgba(var(--r), var(--g), var(--b), 1);
}

/*---------------------------------------
    2.53 Dashboard Card
-----------------------------------------*/
.dashboard-card {
  padding: 30px 15px;
  border-radius: 10px;
  border: 1px solid rgba(var(--r), var(--g), var(--b), 0.2);
  border-left: 2px solid rgba(var(--r), var(--g), var(--b), 1);
  box-shadow: 0 0 10px 0 #ede7e7;
}

@media screen and (min-width: 768px) {
  .dashboard-card {
    padding: 40px 30px;
  }
}

@media screen and (min-width: 1200px) {
  .dashboard-card {
    padding: 30px 15px;
  }
}

@media screen and (min-width: 1400px) {
  .dashboard-card {
    padding: 40px 30px;
  }
}

.dashboard-card .icon {
  background-color: rgba(var(--r), var(--g), var(--b), 0.1);
  color: rgba(var(--r), var(--g), var(--b), 1);
}

.dashboard-card .user__content a {
  color: rgba(0, 40, 78, 0.7);
}
.dashboard-card .user__content p a {
  font-weight: 500;
}
/*---------------------------------------
    2.54 Login
-----------------------------------------*/

@media screen and (min-width: 768px) {
  .login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }
}

.login__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 15px;
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.login__left::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fbfcff;
  mix-blend-mode: soft-light;
}

@media screen and (min-width: 768px) {
  .login__left {
    height: 50vh;
    padding: 50px 30px;
    position: relative;
  }
}

@media screen and (min-width: 992px) {
  .login__left {
    height: 100vh;
    min-height: 100%;
  }
}

@media screen and (min-width: 1366px) {
  .login__left {
    padding: 100px 50px;
  }
}

@media screen and (min-width: 1920px) {
  .login__left {
    padding: 100px 150px;
  }
}

.login__left-text {
  color: var(--white);
}

.login__left-para {
  color: var(--white);
}

@media screen and (min-width: 768px) {
  .login__left-content {
    display: flex;
    justify-content: center;
    position: relative;
    isolation: isolate;
    padding: 50px 15px;
  }
}

@media screen and (min-width: 768px) and (min-width: 1200px) {
  .login__left-content {
    padding: 100px 15px;
  }
}

.login__right {
  padding: 40px 15px;
  box-shadow: 0 0px 2px 0 #e9e9e9;
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .login__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 50px;
    position: relative;
    isolation: isolate;
    border-radius: 10px;
  }
}

@media screen and (min-width: 992px) {
  .login__right {
    padding: 50px 30px;
  }
}

/*---------------------------------------
    2.55 Map
-----------------------------------------*/
.map {
  width: 100%;
  height: 300px;
  margin-bottom: -7px;
  mix-blend-mode: luminosity;
}

@media screen and (min-width: 768px) {
  .map {
    height: 600px;
  }
}

/*---------------------------------------
    0.3 Theme Style
-----------------------------------------*/
/*---------------------------------------
    3.1 Color
-----------------------------------------*/
.text--primary {
  color: rgba(var(--r), var(--g), var(--b), 1);
}

.text--secondary {
  color: #adb5bd;
}

.text--success {
  color: #0dd693;
}

.text--danger {
  color: #f75b60;
}

.text--warning {
  color: #ff9f43;
}

.text--info {
  color: #09c2de;
}

.text--dark {
  color: #222736;
}

.text--white {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.text-clr {
  color: rgba(0, 40, 78, 0.7);
}

.heading-clr {
  color: #171514;
}

.text--base {
  color: rgba(var(--r), var(--g), var(--b), 1);
}

.text--accent {
  color: #171514;
}

/*---------------------------------------
    3.2 Background
-----------------------------------------*/
.bg--primary {
  background: rgba(var(--r), var(--g), var(--b), 1);
}

.bg--secondary {
  background: #adb5bd;
}

.bg--success {
  background: #0dd693;
}

.bg--danger {
  background: #f75b60;
}

.bg--warning {
  background: #ff9f43;
}

.bg--info {
  background: #09c2de;
}

.bg--dark {
  background: #222736;
}

.bg--light {
  background-color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.bg--light-2 {
  background: #fbfcff;
}

.bg--base {
  background-color: rgba(var(--r), var(--g), var(--b), 1);
}

.bg--accent {
  background: #171514;
}

.bg--accent-50 {
  background: rgba(0, 15, 92, 0.05);
}

.bg--accent-100 {
  background: rgba(0, 15, 92, 0.1);
}

.bg--accent-200 {
  background: rgba(0, 15, 92, 0.2);
}

.bg--accent-300 {
  background: rgba(0, 15, 92, 0.3);
}

.bg--accent-500 {
  background: rgba(0, 15, 92, 0.5);
}

.bg--accent-600 {
  background: rgba(0, 15, 92, 0.6);
}

.bg--accent-700 {
  background: rgba(0, 15, 92, 0.7);
}

.bg--accent-800 {
  background: rgba(0, 15, 92, 0.8);
}

.bg--accent-900 {
  background: rgba(0, 15, 92, 0.9);
}

.bg--accent-dark {
  background: #0e0d0c;
}

.bg--accent-light {
  background: #001685;
}

/*---------------------------------------
    3.3 Padding
-----------------------------------------*/
.t-pt-5 {
  padding-top: 5px;
}

.t-pt-10 {
  padding-top: 10px;
}

.t-pt-15 {
  padding-top: 15px;
}

.t-pt-20 {
  padding-top: 20px;
}

.t-pt-25 {
  padding-top: 25px;
}

.t-pt-30 {
  padding-top: 30px;
}

.t-pt-35 {
  padding-top: 35px;
}

.t-pt-40 {
  padding-top: 40px;
}

.t-pt-45 {
  padding-top: 45px;
}

.t-pt-50 {
  padding-top: 50px;
}

.t-pt-55 {
  padding-top: 55px;
}

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

.t-pt-65 {
  padding-top: 65px;
}

.t-pt-70 {
  padding-top: 70px;
}

.t-pt-75 {
  padding-top: 75px;
}

.t-pt-80 {
  padding-top: 80px;
}

.t-pt-85 {
  padding-top: 85px;
}

.t-pt-90 {
  padding-top: 90px;
}

.t-pt-95 {
  padding-top: 95px;
}

.t-pt-100 {
  padding-top: 100px;
}

.t-pt-105 {
  padding-top: 105px;
}

.t-pt-110 {
  padding-top: 110px;
}

.t-pt-115 {
  padding-top: 115px;
}

.t-pt-120 {
  padding-top: 120px;
}

.t-pb-5 {
  padding-bottom: 5px;
}

.t-pb-10 {
  padding-bottom: 10px;
}

.t-pb-15 {
  padding-bottom: 15px;
}

.t-pb-20 {
  padding-bottom: 20px;
}

.t-pb-25 {
  padding-bottom: 25px;
}

.t-pb-30 {
  padding-bottom: 30px;
}

.t-pb-35 {
  padding-bottom: 35px;
}

.t-pb-40 {
  padding-bottom: 40px;
}

.t-pb-45 {
  padding-bottom: 45px;
}

.t-pb-50 {
  padding-bottom: 50px;
}

.t-pb-55 {
  padding-bottom: 55px;
}

.t-pb-60 {
  padding-bottom: 60px;
}

.t-pb-65 {
  padding-bottom: 65px;
}

.t-pb-70 {
  padding-bottom: 70px;
}

.t-pb-75 {
  padding-bottom: 75px;
}

.t-pb-80 {
  padding-bottom: 80px;
}

.t-pb-85 {
  padding-bottom: 85px;
}

.t-pb-90 {
  padding-bottom: 90px;
}

.t-pb-95 {
  padding-bottom: 95px;
}

.t-pb-100 {
  padding-bottom: 100px;
}

.t-pb-105 {
  padding-bottom: 105px;
}

.t-pb-110 {
  padding-bottom: 110px;
}

.t-pb-115 {
  padding-bottom: 115px;
}

.t-pb-120 {
  padding-bottom: 120px;
}

.t-pr-5 {
  padding-right: 5px;
}

.t-pr-10 {
  padding-right: 10px;
}

.t-pr-15 {
  padding-right: 15px;
}

.t-pr-20 {
  padding-right: 20px;
}

.t-pr-25 {
  padding-right: 25px;
}

.t-pr-30 {
  padding-right: 30px;
}

.t-pr-35 {
  padding-right: 35px;
}

.t-pr-40 {
  padding-right: 40px;
}

.t-pr-45 {
  padding-right: 45px;
}

.t-pr-50 {
  padding-right: 50px;
}

.t-pr-55 {
  padding-right: 55px;
}

.t-pr-60 {
  padding-right: 60px;
}

.t-pr-65 {
  padding-right: 65px;
}

.t-pr-70 {
  padding-right: 70px;
}

.t-pr-75 {
  padding-right: 75px;
}

.t-pr-80 {
  padding-right: 80px;
}

.t-pr-85 {
  padding-right: 85px;
}

.t-pr-90 {
  padding-right: 90px;
}

.t-pr-95 {
  padding-right: 95px;
}

.t-pr-100 {
  padding-right: 100px;
}

.t-pr-105 {
  padding-right: 105px;
}

.t-pr-110 {
  padding-right: 110px;
}

.t-pr-115 {
  padding-right: 115px;
}

.t-pr-120 {
  padding-right: 120px;
}

.t-pl-5 {
  padding-left: 5px;
}

.t-pl-10 {
  padding-left: 10px;
}

.t-pl-15 {
  padding-left: 15px;
}

.t-pl-20 {
  padding-left: 20px;
}

.t-pl-25 {
  padding-left: 25px;
}

.t-pl-30 {
  padding-left: 30px;
}

.t-pl-35 {
  padding-left: 35px;
}

.t-pl-40 {
  padding-left: 40px;
}

.t-pl-45 {
  padding-left: 45px;
}

.t-pl-50 {
  padding-left: 50px;
}

.t-pl-55 {
  padding-left: 55px;
}

.t-pl-60 {
  padding-left: 60px;
}

.t-pl-65 {
  padding-left: 65px;
}

.t-pl-70 {
  padding-left: 70px;
}

.t-pl-75 {
  padding-left: 75px;
}

.t-pl-80 {
  padding-left: 80px;
}

.t-pl-85 {
  padding-left: 85px;
}

.t-pl-90 {
  padding-left: 90px;
}

.t-pl-95 {
  padding-left: 95px;
}

.t-pl-100 {
  padding-left: 100px;
}

.t-pl-105 {
  padding-left: 105px;
}

.t-pl-110 {
  padding-left: 110px;
}

.t-pl-115 {
  padding-left: 115px;
}

.t-pl-120 {
  padding-left: 120px;
}

/*---------------------------------------
    3.4 Margin
-----------------------------------------*/
.t-mt-5 {
  margin-top: 5px;
}

.t-mt-10 {
  margin-top: 10px;
}

.t-mt-15 {
  margin-top: 15px;
}

.t-mt-20 {
  margin-top: 20px;
}

.t-mt-25 {
  margin-top: 25px;
}

.t-mt-30 {
  margin-top: 30px;
}

.t-mt-35 {
  margin-top: 35px;
}

.t-mt-40 {
  margin-top: 40px;
}

.t-mt-45 {
  margin-top: 45px;
}

.t-mt-50 {
  margin-top: 50px;
}

.t-mt-55 {
  margin-top: 55px;
}

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

.t-mt-65 {
  margin-top: 65px;
}

.t-mt-70 {
  margin-top: 70px;
}

.t-mt-75 {
  margin-top: 75px;
}

.t-mt-80 {
  margin-top: 80px;
}

.t-mt-85 {
  margin-top: 85px;
}

.t-mt-90 {
  margin-top: 90px;
}

.t-mt-95 {
  margin-top: 95px;
}

.t-mt-100 {
  margin-top: 100px;
}

.t-mt-105 {
  margin-top: 105px;
}

.t-mt-110 {
  margin-top: 110px;
}

.t-mt-115 {
  margin-top: 115px;
}

.t-mt-120 {
  margin-top: 120px;
}

.t-mb-5 {
  margin-bottom: 5px;
}

.t-mb-10 {
  margin-bottom: 10px;
}

.t-mb-15 {
  margin-bottom: 15px;
}

.t-mb-20 {
  margin-bottom: 20px;
}

.t-mb-25 {
  margin-bottom: 25px;
}

.t-mb-30 {
  margin-bottom: 30px;
}

.t-mb-35 {
  margin-bottom: 35px;
}

.t-mb-40 {
  margin-bottom: 40px;
}

.t-mb-45 {
  margin-bottom: 45px;
}

.t-mb-50 {
  margin-bottom: 50px;
}

.t-mb-55 {
  margin-bottom: 55px;
}

.t-mb-60 {
  margin-bottom: 60px;
}

.t-mb-65 {
  margin-bottom: 65px;
}

.t-mb-70 {
  margin-bottom: 70px;
}

.t-mb-75 {
  margin-bottom: 75px;
}

.t-mb-80 {
  margin-bottom: 80px;
}

.t-mb-85 {
  margin-bottom: 85px;
}

.t-mb-90 {
  margin-bottom: 90px;
}

.t-mb-95 {
  margin-bottom: 95px;
}

.t-mb-100 {
  margin-bottom: 100px;
}

.t-mb-105 {
  margin-bottom: 105px;
}

.t-mb-110 {
  margin-bottom: 110px;
}

.t-mb-115 {
  margin-bottom: 115px;
}

.t-mb-120 {
  margin-bottom: 120px;
}

.t-mr-5 {
  margin-right: 5px;
}

.t-mr-10 {
  margin-right: 10px;
}

.t-mr-15 {
  margin-right: 15px;
}

.t-mr-20 {
  margin-right: 20px;
}

.t-mr-25 {
  margin-right: 25px;
}

.t-mr-30 {
  margin-right: 30px;
}

.t-mr-35 {
  margin-right: 35px;
}

.t-mr-40 {
  margin-right: 40px;
}

.t-mr-45 {
  margin-right: 45px;
}

.t-mr-50 {
  margin-right: 50px;
}

.t-mr-55 {
  margin-right: 55px;
}

.t-mr-60 {
  margin-right: 60px;
}

.t-mr-65 {
  margin-right: 65px;
}

.t-mr-70 {
  margin-right: 70px;
}

.t-mr-75 {
  margin-right: 75px;
}

.t-mr-80 {
  margin-right: 80px;
}

.t-mr-85 {
  margin-right: 85px;
}

.t-mr-90 {
  margin-right: 90px;
}

.t-mr-95 {
  margin-right: 95px;
}

.t-mr-100 {
  margin-right: 100px;
}

.t-mr-105 {
  margin-right: 105px;
}

.t-mr-110 {
  margin-right: 110px;
}

.t-mr-115 {
  margin-right: 115px;
}

.t-mr-120 {
  margin-right: 120px;
}

.t-ml-5 {
  margin-left: 5px;
}

.t-ml-10 {
  margin-left: 10px;
}

.t-ml-15 {
  margin-left: 15px;
}

.t-ml-20 {
  margin-left: 20px;
}

.t-ml-25 {
  margin-left: 25px;
}

.t-ml-30 {
  margin-left: 30px;
}

.t-ml-35 {
  margin-left: 35px;
}

.t-ml-40 {
  margin-left: 40px;
}

.t-ml-45 {
  margin-left: 45px;
}

.t-ml-50 {
  margin-left: 50px;
}

.t-ml-55 {
  margin-left: 55px;
}

.t-ml-60 {
  margin-left: 60px;
}

.t-ml-65 {
  margin-left: 65px;
}

.t-ml-70 {
  margin-left: 70px;
}

.t-ml-75 {
  margin-left: 75px;
}

.t-ml-80 {
  margin-left: 80px;
}

.t-ml-85 {
  margin-left: 85px;
}

.t-ml-90 {
  margin-left: 90px;
}

.t-ml-95 {
  margin-left: 95px;
}

.t-ml-100 {
  margin-left: 100px;
}

.t-ml-105 {
  margin-left: 105px;
}

.t-ml-110 {
  margin-left: 110px;
}

.t-ml-115 {
  margin-left: 115px;
}

.t-ml-120 {
  margin-left: 120px;
}

/*---------------------------------------
    3.5 Utility Classes
-----------------------------------------*/
.t-heading-font {
  font-family: "Poppins", sans-serif;
}

.t-body-font {
  font-family: "Roboto", sans-serif;
}

.t-link {
  text-decoration: none;
  transition: all 0.3s ease;
}

.t-link:hover {
  text-decoration: none;
}

.t-link--primary:hover {
  color: rgba(var(--r), var(--g), var(--b), 1);
}

.t-link--danger:hover {
  color: #f75b60;
}

.t-link--info:hover {
  color: #09c2de;
}

.t-link--light:hover {
  color: rgba(var(--light-r), var(--light-g), var(--light-b), 1);
}

.t-link--base:hover {
  color: rgba(var(--r), var(--g), var(--b), 1);
}

.t-link--accent:hover {
  color: #171514;
}

.t-short-para {
  max-width: 55ch;
}

/*---------------------------------------
    3.6 Animation
-----------------------------------------*/
@keyframes btnVideo {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--r), var(--g), var(--b), 1);
  }

  25% {
    box-shadow: 0 0 0 10px rgba(var(--r), var(--g), var(--b), 0.3);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(var(--r), var(--g), var(--b), 0.3);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(var(--r), var(--g), var(--b), 0.1);
  }
}

@keyframes circle {
  0% {
    transform: rotate(0deg) translate(-60px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translate(-60px) rotate(-360deg);
  }
}

@keyframes goright {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(80px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes goleft {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-80px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes topRight {
  0% {
    transform: translate(0);
  }

  50% {
    transform: translate(80px, -80px);
  }

  100% {
    transform: translate(0);
  }
}

@keyframes topLeft {
  0% {
    transform: translate(0);
  }

  50% {
    transform: translate(80px, 80px);
  }

  100% {
    transform: translate(0);
  }
}

@keyframes circlerotate {
  0% {
    transform: rotate(0deg) translate(-60px);
  }

  100% {
    transform: rotate(360deg) translate(-60px);
  }
}

@keyframes rotates {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes goTop {
  0% {
    transform: translateY(0) translateX(-50%);
  }

  50% {
    transform: translateY(-20px) translateX(-50%);
  }

  100% {
    transform: translateY(0) translateX(-50%);
  }
}

@keyframes heartBeat {
  0% {
    outline: 0 solid rgba(var(--r), var(--g), var(--b), 0.5);
  }

  25% {
    outline: 5px solid rgba(var(--r), var(--g), var(--b), 0.5);
  }

  50% {
    outline: 10px solid rgba(var(--r), var(--g), var(--b), 0.5);
  }

  75% {
    outline: 5px solid rgba(var(--r), var(--g), var(--b), 0.5);
  }

  100% {
    outline: 0 solid rgba(var(--r), var(--g), var(--b), 0.5);
  }
}

@keyframes heart_beat_img {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.7);
  }

  100% {
    transform: scale(1);
  }
}

/*---------------------------------------
    0.4 Layouts Style
-----------------------------------------*/
/*---------------------------------------
    4.1 Features Section
-----------------------------------------*/
.features-section {
  background: #fbfcff;
}

/*---------------------------------------
    4.2 FAQ Section
-----------------------------------------*/
.faq-section {
  background: #fbfcff;
}

/*---------------------------------------
    4.3 Login Section
-----------------------------------------*/

/*---------------------------------------
    4.4 Privacy Policy Section
-----------------------------------------*/
.privacy-policy-section {
  position: relative;
  isolation: isolate;
}

@media screen and (min-width: 992px) {
  .privacy-policy-section__content {
    padding-left: 30px;
  }
}

.privacy-policy-section__content-text {
  margin-bottom: 1.5rem;
}

.recent-img {
  width: 65px;
  height: 65px;
  border-radius: 5px;
}

.file-button {
  padding: 8px 15px;
  border-radius: 3rem;
  font-size: 14px;
  color: #fff;
  background: rgba(var(--r), var(--g), var(--b), 1);
}

.file-button:hover {
  color: #fff;
}

label.required:after {
  content: "*";
  color: #dc3545 !important;
  margin-left: 2px;
}

.payment-table li {
  padding: 5px 15px;
}

.payment-table li:nth-child(odd) {
  background: rgba(var(--r), var(--g), var(--b), 0.05);
}

.payment-table li:nth-child(even) {
  background: rgba(var(--r), var(--g), var(--b), 0.01);
}

.btn-selected {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 30px;
  cursor: pointer;
  text-align: center;
  flex-shrink: 0;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.btn-selected--primary {
  border: 2px solid hsl(var(--border));
  background: #fff;
  color: rgba(var(--r), var(--g), var(--b), 1);
}

.btn-selected__input:checked ~ .btn-selected--primary {
  border: 2px solid rgba(var(--r), var(--g), var(--b), 1);
}

.btn-selected--secondary {
  border: 2px solid hsl(var(--border));
  background: #fff;
  color: rgba(var(--r), var(--g), var(--b), 1);
}

.btn-selected__input:checked ~ .btn-selected--secondary {
  border: 2px solid rgba(var(--r), var(--g), var(--b), 1);
}

.btn-selected__input {
  display: none;
}

.btn-selected__icon {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  width: 28px;
}

.btn-selected__text {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1;
}

.video-section {
  background-image: url(../images/section-shape-1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.counter-section {
  background: #171514;
}
@media (max-width: 480px) {
  .counter-section .col-6 {
    width: 100%;
  }
}

.step-icon {
  background: rgb(var(--r), var(--g), var(--b));
  color: #fff;
}

@media screen and (min-width: 768px) {
  .step-icon {
    position: relative;
    z-index: 99;
  }

  .step-icon::after {
    content: "";
    width: 100vw;
    height: 2px;
    position: absolute;
    left: 100%;
    background: rgb(var(--r), var(--g), var(--b));
  }

  .work--step [class*="col"]:nth-of-type(2) .step-icon::before {
    content: "";
    width: 100vw;
    height: 2px;
    position: absolute;
    right: 100%;
    background: rgb(var(--r), var(--g), var(--b));
  }

  .work--step [class*="col"]:nth-of-type(3) .step-icon::before {
    content: "";
    width: 100vw;
    height: 2px;
    position: absolute;
    right: 100%;
    background: rgb(var(--r), var(--g), var(--b));
  }

  .work--step [class*="col"]:nth-of-type(3) .step-icon::after {
    display: none;
  }
}

.step-card {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  padding-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .step-card {
    padding-bottom: 0;
    overflow: hidden;
  }
}

.step-card::before {
  content: "";
  width: 2px;
  height: 35px;
  position: absolute;
  top: calc(100% - 30px);
  background: rgb(var(--r), var(--g), var(--b));
}

.step-card::after {
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  top: calc(100% - 22px);
  font-size: 28px;
  z-index: 9;
  color: rgb(var(--r), var(--g), var(--b));
}

@media screen and (min-width: 768px) {
  .step-card {
    flex-wrap: nowrap;
  }

  .step-card::before {
    display: none;
  }

  .step-card::after {
    content: "\f105";
    font-family: "Line Awesome Free";
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 0;
    font-size: 28px;
    z-index: 100;
    color: rgb(var(--r), var(--g), var(--b));
  }
  .step-card .features-card__content {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.work--step [class*="col"]:last-of-type .step-card {
  padding-bottom: 0;
}

.work--step [class*="col"]:last-of-type .step-card::after {
  display: none;
}

.work--step [class*="col"]:last-of-type .step-card::before {
  display: none;
}

.login-section {
  min-height: calc(100vh - 138px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}

.banned-card__icon {
  display: inline-block;
  font-size: 1.777rem;
  line-height: 1;
  color: #fff;
}

.banned-card {
  border-radius: 5px;
  border: 1px solid hsl(var(--danger));
}

.banned-card__header {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--danger));
}

.banned-card__body {
  padding: 30px 15px;
}

.list-group-item {
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.header-fixed > .container {
  position: relative;
}

.header-fixed .nav-item {
  border-bottom: 1px solid rgba(34, 39, 54, 0.05);
}

@media screen and (min-width: 992px) {
  .header-fixed .nav-item {
    border-bottom: none;
  }
}

.header-fixed .nav-item:last-child {
  border-bottom: none;
}

.select-lang .form-select {
  padding: 0 2.25rem 0 0;
  width: auto;
  border: none;
}

.navbar-toggler {
  padding: 0;
  border: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.menu-toggle {
  margin: 10px 0;
  position: relative;
  display: block;
  width: 1.5rem;
  height: 1.25rem;
  cursor: pointer;
  background: transparent;
  border-top: 2px solid;
  border-bottom: 2px solid;
  color: rgb(var(--dark));
  font-size: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: -webkit-transform 0.25s ease-in-out;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  -o-transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  -moz-transition: -webkit-transform 0.25s ease-in-out;
  -ms-transition: -webkit-transform 0.25s ease-in-out;
  background-color: rgb(var(--dark));
}

.navbar-toggler[aria-expanded="true"] .menu-toggle {
  border-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .menu-toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .menu-toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.pt-8 {
  padding-top: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.header--primary .logo-light {
  display: none;
}

@media (min-width: 992px) {
  .fixed-header .header--primary .logo-light {
    display: block;
  }
}

@media (max-width: 991px) {
  .header--primary .logo-dark {
    display: none;
  }
  .header--primary .logo-light {
    display: block;
  }
}
.fixed-header .header--primary .logo-dark {
  display: none;
}
.modal {
  z-index: 9999999;
}

.beneficiary-container {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.beneficiary-container::-webkit-scrollbar {
  display: none;
}

.beneficiary-container__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 75px;
  cursor: pointer;
}

.beneficiary-image__container {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-bottom: 10px;
}
