/*-------------------------------
    Dark Theme  CSS
-------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Rotate Start */
/* Rotate End */
/* Move Horizontal Forward & Backward */
/* Rotate Full 360 */
/* Frame Two Animation */
/* Shine Animation */
/* Bounce Animation */
.bounce {
  -moz-animation: bounce 1500ms infinite ease-in-out;
  -webkit-animation: bounce 1500ms infinite ease-in-out;
  animation: bounce 1500ms infinite ease-in-out;
}

/* Move Horizontal Forward Animation */
.move-horizontal-forward {
  -webkit-animation: move-horizontal-forward 3000ms infinite ease-in-out;
  animation: move-horizontal-forward 3000ms infinite ease-in-out;
}

/* Move Horizontal Backward Animation */
.move-horizontal-backward {
  -webkit-animation: move-horizontal-backward 3000ms infinite ease-in-out;
  animation: move-horizontal-backward 3000ms infinite ease-in-out;
}

/* Move Vertical Up Animation */
.move-vertical-up {
  -moz-animation: move-vertical-up 3000ms infinite ease-in-out;
  -webkit-animation: move-vertical-up 3000ms infinite ease-in-out;
  animation: move-vertical-up 3000ms infinite ease-in-out;
}

/* Move Vertical Down Animation */
.move-vertical-down {
  -moz-animation: move-vertical-down 3000ms infinite ease-in-out;
  -webkit-animation: move-vertical-down 3000ms infinite ease-in-out;
  animation: move-vertical-down 3000ms infinite ease-in-out;
}

/* Waving Start Animation */
.waving-start {
  -webkit-animation: waving-start 7s infinite linear;
  animation: waving-start 7s infinite linear;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Waving End Animation */
.waving-end {
  -webkit-animation: waving-end 7s infinite linear;
  animation: waving-end 7s infinite linear;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Rotate Animation */
.rotate {
  -webkit-animation: rotation 20s infinite linear;
  animation: rotation 20s infinite linear;
}

/* Animation Frames Two Animation */
.animationFramesTwo {
  -moz-animation: animationFramesTwo 15000ms infinite ease-in-out;
  -webkit-animation: animationFramesTwo 15000ms infinite ease-in-out;
  animation: animationFramesTwo 15000ms infinite ease-in-out;
}

/* Slide Up Animation */
.slide_up {
  -moz-animation: slide_up 3000ms infinite ease-in-out;
  -webkit-animation: slide_up 3000ms infinite ease-in-out;
  animation: slide_up 3000ms infinite ease-in-out;
}

/* Slide Down Animation */
.slide_down {
  -moz-animation: slide_down 3000ms infinite ease-in-out;
  -webkit-animation: slide_down 3000ms infinite ease-in-out;
  animation: slide_down 3000ms infinite ease-in-out;
}

/* FadeIn Down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* FadeIn Up Animation */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* Shine Animation */
.shine {
  -moz-animation: shine 3000ms infinite ease-in-out;
  -webkit-animation: shine 3000ms infinite ease-in-out;
  animation: shine 3000ms infinite ease-in-out;
}

/* Bounce Keyframes */
@keyframes bounce {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
}
/* Move Horizontal Forward Keyframes */
@-webkit-keyframes move-horizontal-forward {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes move-horizontal-forward {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* Move Horizontal Backward Keyframes */
@-webkit-keyframes move-horizontal-backward {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes move-horizontal-backward {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/* Move Vertical Up Keyframes */
@-webkit-keyframes move-vertical-up {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes move-vertical-up {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
/* Move Vertical Down Keyframes */
@-webkit-keyframes move-vertical-down {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes move-vertical-down {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
/* Waving start Keyframes */
@-webkit-keyframes waving-start {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  75% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes waving-start {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  75% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
/* Waving End Keyframes */
@-webkit-keyframes waving-end {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  50% {
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
  75% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes waving-end {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  50% {
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
  75% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
/* Rotation Keyframes */
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* Animation Frames Two Keyframes */
@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
    transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
    transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
/* Slide Up Keyframes */
@-webkit-keyframes slide_up {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes slide_up {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
/* Slide Down Keyframes */
@-webkit-keyframes slide_down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes slide_down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
/* FadeIn Down Keyframes */
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/* FadeIn Up Keyframes */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* Shine Keyframes */
@-webkit-keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 125%;
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 125%;
  }
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

section {
  overflow-x: hidden;
}

.grecaptcha-badge {
  z-index: 99999;
}

body.digital .block-traditional {
  display: none;
}
body.digital .block-digital {
  display: flex;
}

body.traditional .block-traditional {
  display: flex;
}
body.traditional .block-digital {
  display: none;
}

body.digital.force-digital .block-traditional,
body.traditional.force-digital .block-traditional {
  display: none;
}
body.digital.force-digital .block-digital,
body.traditional.force-digital .block-digital {
  display: flex;
}

body.digital.force-traditional .block-traditional,
body.traditional.force-traditional .block-traditional {
  display: flex;
}
body.digital.force-traditional .block-digital,
body.traditional.force-traditional .block-digital {
  display: none;
}

:root {
  --section-space-sm: 48px;
  --section-space-md: 64px;
  --section-space-lg: 80px;
}

main > section:not(.hero-wrap):not(.no-page-hero):not(.landing-page) {
  padding-block: var(--section-space-sm);
}
main > section:not(.hero-wrap):last-of-type {
  padding-block: var(--section-space-sm) var(--section-space-md);
}
main > section.hero-wrap + section:not(.no-page-hero):not(.landing-page) {
  padding-block: 0px var(--section-space-sm) !important;
}
main > section.no-page-hero {
  margin-top: 60px;
  padding-block-start: 64px !important;
}
main > section.landing-page {
  padding-block: var(--section-space-sm) var(--section-space-md) !important;
}
@media (min-width: 768px) {
  main > section:not(.hero-wrap):not(.no-page-hero):not(.landing-page) {
    padding-block: var(--section-space-md);
  }
  main > section:not(.hero-wrap):last-of-type {
    padding-block: var(--section-space-md) var(--section-space-lg);
  }
  main > section.hero-wrap + section:not(.no-page-hero):not(.landing-page) {
    padding-block: 0px var(--section-space-md) !important;
  }
  main > section.no-page-hero {
    margin-top: 120px;
    padding-block-start: 80px !important;
  }
  main > section.landing-page {
    padding-block: var(--section-space-md) var(--section-space-md) !important;
  }
}
@media (min-width: 992px) {
  main > section.no-page-hero {
    margin-top: 132px;
  }
  main > section.landing-page {
    padding-block: var(--section-space-lg) var(--section-space-lg) !important;
  }
}

/*
section.no-page-hero {
    margin-top: 64px;
    @media only screen and (min-width: 768px) {
        margin-top: 80px;
    }
}*/
body {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  color: rgb(28.8, 20.7, 72.9);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #201751;
}

p, p.lead {
  color: rgb(28.8, 20.7, 72.9);
  line-height: 1.7;
}

.text-body-secondary, .text-muted {
  color: rgb(143.5, 139, 168) !important;
}

.disabled {
  color: rgb(165.8, 162.2, 185.4);
}

a, a.link-primary {
  color: rgb(98.9, 92.6, 133.2);
}
a:hover, a:focus, a.link-primary:hover, a.link-primary:focus {
  color: #201751;
}

a.link-secondary {
  color: rgb(98.9, 92.6, 133.2);
}
a.link-secondary:hover, a.link-secondary:focus {
  color: #201751;
}
a.link-secondary:visited {
  opacity: 0.85;
}

.link-primary-alt {
  color: rgb(98.9, 92.6, 133.2);
}
.link-primary-alt:hover {
  color: #61C01A;
}

.link-secondary-alt {
  color: rgb(144.4, 210.9, 94.7);
}
.link-secondary-alt:hover {
  color: #201751;
}

article {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.7;
  font-size: 16px;
  color: #201751;
}
@media only screen and (min-width: 768px) {
  article {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}
article.no-border-bottom {
  border-bottom: none;
}
article.no-bottom-spacing {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
@media only screen and (min-width: 768px) {
  article.content-valign-center {
    padding-bottom: 0px;
    margin-block: auto;
  }
}
article .article-header {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-bottom: 16px;
}
article .article-header span {
  color: #61C01A;
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 500;
}
article .article-header h1, article .article-header h2, article .article-header h3, article .article-header h4, article .article-header h5, article .article-header h6 {
  color: #201751;
  margin-bottom: 0px;
  font-weight: 700;
  line-height: 1.2;
}
article .article-header h1 {
  font-size: 60px;
}
article .article-header h2 {
  font-size: 44px;
}
article .article-header h3 {
  font-size: 32px;
}
article .article-header h4 {
  font-size: 24px;
}
article .article-header h5 {
  font-size: 20px;
}
article .article-header h6 {
  font-size: 16px;
}
article p {
  margin-block: 0px 16px;
}
article strong, article b {
  color: #201751;
}
article em, article i {
  font-style: italic;
  color: #61C01A;
}
article a {
  color: rgb(144.4, 210.9, 94.7);
  text-decoration: underline;
  word-break: break-word;
}
article a:hover {
  color: #61C01A;
}
article img {
  border-radius: 8px;
  margin: 8px;
  max-width: 100%;
  height: auto;
  display: block;
}
article h1, article h2, article h3, article h4, article h5, article h6 {
  color: #201751;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
}
article h1::first-letter, article h2::first-letter, article h3::first-letter, article h4::first-letter, article h5::first-letter, article h6::first-letter {
  text-transform: capitalize;
}
article h1 {
  font-size: 30px;
}
article h2 {
  font-size: 28px;
}
article h3 {
  font-size: 26px;
}
article h4 {
  font-size: 24px;
}
article h5 {
  font-size: 22px;
}
article h6 {
  font-size: 20px;
}
article blockquote {
  border-inline-start: 4px solid #61C01A;
  padding-block: 8px;
  padding-inline: 16px;
  margin: 16px 0;
  color: rgba(32, 23, 81, 0.8);
  font-style: italic;
  background: rgba(32, 23, 81, 0.05);
}
article ol, article ul {
  margin-block: 12px 16px;
  padding-inline-start: 20px;
}
article ol li, article ul li {
  font-size: 16px;
  color: #201751;
  margin-bottom: 8px;
  line-height: 1.6;
}
article ul {
  list-style: none;
}
article ul li {
  display: flex;
  align-items: center;
}
article ul li:before {
  display: inline-flex;
  align-self: baseline;
  transform: rotateY(0deg) scale(1);
  font-family: "remixicon" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\eb88";
  color: #61C01A;
  font-size: 16px;
  line-height: 1;
  margin-inline-end: 8px;
  padding-top: 5px;
}
article.ul-style-2 ul li {
  display: flex;
  align-items: center;
}
article.ul-style-2 ul li:before {
  display: inline-flex;
  flex: 0 0 30px;
  align-self: baseline;
  justify-content: center;
  align-items: center;
  transform: rotateY(0deg) scale(1);
  font-family: flaticon !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f114";
  color: #61C01A;
  font-size: 13px;
  line-height: 1;
  margin-inline-end: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(97, 192, 26, 0.1);
  padding-top: 0px;
}
article.list-padding-start-0 ol, article.list-padding-start-0 ul {
  padding-inline-start: 0px;
}
article table {
  width: 100%;
  border-collapse: collapse;
  margin-block: 16px;
}
article table th, article table td {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 12px;
}
article table th {
  background: rgba(32, 23, 81, 0.1);
  color: #201751;
}
@media only screen and (max-width: 767.98px) {
  article {
    font-size: 14px;
  }
  article .article-header span {
    font-size: 16px;
  }
  article .article-header h1 {
    font-size: 30px;
  }
  article .article-header h2 {
    font-size: 24px;
  }
  article .article-header h3 {
    font-size: 22px;
  }
  article .article-header h4 {
    font-size: 20px;
  }
  article .article-header h5 {
    font-size: 18px;
  }
  article .article-header h6 {
    font-size: 16px;
  }
  article p {
    font-size: 14px;
  }
  article strong, article b {
    font-size: 14px;
  }
  article em, article i {
    font-size: 14px;
  }
  article a {
    font-size: 14px;
  }
  article h1 {
    font-size: 28px;
  }
  article h2 {
    font-size: 24px;
  }
  article h3 {
    font-size: 22px;
  }
  article h4 {
    font-size: 20px;
  }
  article h5 {
    font-size: 18px;
  }
  article h6 {
    font-size: 16px;
  }
  article blockquote {
    font-size: 14px;
  }
  article ol, article ul {
    margin-block: 8px 12px;
    padding-inline-start: 16px;
  }
  article ol li, article ul li {
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.4;
  }
  article ul li:before {
    font-size: 14px;
    padding-top: 3px;
  }
  article.ul-style-2 ul li:before {
    flex: 0 0 24px;
    font-size: 10px;
    width: 24px;
    height: 24px;
  }
  article table th {
    font-size: 16px;
  }
  article table td {
    font-size: 14px;
  }
}

.content-wrap .content-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.content-wrap .content-header.start {
  align-items: start;
}
.content-wrap .content-header.end {
  align-items: end;
}
.content-wrap .content-header span {
  color: #61C01A;
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: capitalize;
}
.content-wrap .content-header h1, .content-wrap .content-header h2, .content-wrap .content-header h3, .content-wrap .content-header h4, .content-wrap .content-header h5, .content-wrap .content-header h6 {
  color: #201751;
  margin-bottom: 16px;
  font-weight: 600;
}
.content-wrap .content-header h1::first-letter, .content-wrap .content-header h2::first-letter, .content-wrap .content-header h3::first-letter, .content-wrap .content-header h4::first-letter, .content-wrap .content-header h5::first-letter, .content-wrap .content-header h6::first-letter {
  text-transform: capitalize;
}
.content-wrap .content-header h1 {
  font-size: 60px;
}
.content-wrap .content-header h2 {
  font-size: 44px;
}
.content-wrap .content-header h3 {
  font-size: 32px;
}
.content-wrap .content-header h4 {
  font-size: 24px;
}
.content-wrap .content-header h5 {
  font-size: 20px;
}
.content-wrap .content-header h6 {
  font-size: 16px;
}
@media only screen and (max-width: 767.98px) {
  .content-wrap .content-header span {
    font-size: 16px;
  }
  .content-wrap .content-header h1 {
    font-size: 30px;
  }
  .content-wrap .content-header h2 {
    font-size: 24px;
  }
  .content-wrap .content-header h3 {
    font-size: 22px;
  }
  .content-wrap .content-header h4 {
    font-size: 20px;
  }
  .content-wrap .content-header h5 {
    font-size: 18px;
  }
  .content-wrap .content-header h6 {
    font-size: 16px;
  }
}
.content-wrap .content-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.content-wrap .content-text article,
.content-wrap .content-text .content-img,
.content-wrap .content-text .ratio {
  width: 100%;
}
.content-wrap .content-text article {
  order: 1;
}
.content-wrap .content-text .content-img {
  order: 2;
}
.content-wrap .content-text .ratio {
  order: 3;
}
.content-wrap .content-text.flip-order article {
  order: 2;
}
.content-wrap .content-text.flip-order .content-img {
  order: 1;
}
@media (min-width: 992px) {
  .content-wrap .content-text:has(.content-img) {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
  .content-wrap .content-text:has(.content-img) article {
    order: 1;
  }
  .content-wrap .content-text:has(.content-img) .content-img {
    order: 2;
  }
  .content-wrap .content-text.flip-order:has(.content-img) article {
    order: 2;
  }
  .content-wrap .content-text.flip-order:has(.content-img) .content-img {
    order: 1;
  }
}
.content-wrap .content-text .ratio {
  grid-column: 1/-1;
  order: 3;
  width: 100%;
  overflow: hidden;
  margin-top: 24px;
}
.content-wrap .content-text .ratio iframe {
  border: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.content-wrap .content-text .content-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.content-wrap .content-text .content-img.background-img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.content-wrap .content-text .content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.content-wrap .content-text .content-img img.bounce {
  margin-block: 8px;
  height: auto;
}
.content-wrap .content-text .content-img.fill-image img {
  object-fit: fill;
}
.content-wrap .content-text .content-img.contain-image img {
  object-fit: contain;
}
.content-wrap .content-text .content-img.border-radius-0 {
  border-radius: 0px;
}
.content-wrap .content-text .content-img.aspect-ratio-1 {
  aspect-ratio: 1/1;
}
.content-wrap .content-text .content-img.aspect-ratio-16 {
  aspect-ratio: 16/9;
}
.content-wrap.mb-all-0 .content-header {
  margin-bottom: 0px;
}
.content-wrap.mb-all-0 .content-header span, .content-wrap.mb-all-0 .content-header h1, .content-wrap.mb-all-0 .content-header h2, .content-wrap.mb-all-0 .content-header h3, .content-wrap.mb-all-0 .content-header h4, .content-wrap.mb-all-0 .content-header h5, .content-wrap.mb-all-0 .content-header h6 {
  margin-bottom: 0px;
}
.content-wrap.mb-all-0 .content-text {
  margin-bottom: 0px;
}
.content-wrap.mb-title-0 .content-header {
  margin-bottom: 0px;
}
.content-wrap.mb-title-0 .content-header span, .content-wrap.mb-title-0 .content-header h1, .content-wrap.mb-title-0 .content-header h2, .content-wrap.mb-title-0 .content-header h3, .content-wrap.mb-title-0 .content-header h4, .content-wrap.mb-title-0 .content-header h5, .content-wrap.mb-title-0 .content-header h6 {
  margin-bottom: 0px;
}
.content-wrap.mb-content-0 .content-text {
  margin-bottom: 0px;
}
.content-wrap .app-btns a {
  display: inline-block;
  margin-top: 8px;
}
.content-wrap .app-btns a:first-child {
  margin-inline-end: 12px;
}
.content-wrap .app-btns a img {
  display: inline-block;
  margin: 0px;
  width: 140px;
  height: auto;
}
@media only screen and (min-width: 576px) {
  .content-wrap .app-btns a img {
    width: 160px;
  }
}
@media only screen and (min-width: 992px) {
  .content-wrap .app-btns a img {
    width: 177px;
  }
}

a {
  color: #000;
  text-transform: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover,
a :focus {
  text-decoration: none;
  box-shadow: none;
  color: #000;
}

a:focus {
  outline: 0 solid;
}

img {
  max-width: 100%;
  height: 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;
  appearance: textfield;
}

select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/down-arrow.png);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: 94% 50%;
}

.z-0 {
  z-index: 0;
  position: relative;
}

.help-block {
  color: #E31C25;
}

.list-style {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-style li {
  list-style: none;
}

.page-wrapper {
  overflow-x: hidden;
}

/* Padding Top */
.pt-10 {
  padding-top: 10px;
}

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

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

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

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

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

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

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

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

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

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

.pt-200 {
  padding-top: 200px;
}

/* Padding Bottom */
.pb-10 {
  padding-bottom: 10px;
}

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

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

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

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

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

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

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

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

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

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

.pb-130 {
  padding-bottom: 130px;
}

/* Padding Y-Axis */
.ptb-10 {
  padding-bottom: 10px;
  padding-bottom: 10px;
}

.ptb-20 {
  padding-bottom: 20px;
  padding-bottom: 20px;
}

.ptb-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.ptb-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ptb-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.ptb-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ptb-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Margin Top */
.mt-0 {
  margin-top: 0px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

/* Margin Bottom */
.mb-0 {
  margin-bottom: 0px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 24px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

/* Margin Y-Axis */
.mtb-100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.bg-transparent {
  background-color: transparent;
}

.bg-black {
  background-color: #000;
}

.bg-white {
  background-color: #FFF;
}

.bg-athens {
  background-color: #F3F4F6;
}

.bg-albastor {
  background-color: #f9f9f9;
}

.bg-rock {
  background-color: #2b0d61;
}

.bg-spring {
  background-color: #F2FBFA;
}

.bg-stratos {
  background-color: #010647;
}

.bg-rhino {
  background-color: #282B58;
}

.bg-squeeze {
  background-color: #EDF9F9;
}

.bg-primary {
  background-color: #201751 !important;
}

.bg-secondary {
  background-color: #61C01A !important;
}

.bg-f {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ddd;
}

/*
.bg-alco{
    background-color: $clr_alco;
}
*/
.op-1 {
  opacity: 0.1;
}

.op-2 {
  opacity: 0.2;
}

.op-3 {
  opacity: 0.3;
}

.op-4 {
  opacity: 0.4;
}

.op-5 {
  opacity: 0.5;
}

.op-6 {
  opacity: 0.6;
}

.op-7 {
  opacity: 0.7;
}

.op-75 {
  opacity: 0.75;
}

.op-8 {
  opacity: 0.8;
}

.op-85 {
  opacity: 0.85;
}

.op-9 {
  opacity: 0.9;
}

.op-95 {
  opacity: 0.95;
}

.op-10 {
  opacity: 1;
}

.body_overlay {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.body_overlay.open {
  visibility: visible;
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pos-rel {
  position: relative;
  z-index: 1;
}

.switch-theme-mode {
  position: absolute;
  top: 110px; /*160px*/
  inset-inline-end: 20px;
  z-index: 99;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  background-color: #FFF;
  border: 1px solid #f9f9f9;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.slider:before {
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;
  inset-inline-start: 0;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: 0 0px 15px rgba(32, 32, 32, 0.2392156863);
  background: white url("../img/night.png");
  background-repeat: no-repeat;
  background-position: center;
}

input:checked + .slider {
  background-color: #201751;
}

input:focus + .slider {
  box-shadow: 0 0 1px #201751;
}

input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
  background: white url("../img/sunny.png");
  background-repeat: no-repeat;
  background-position: center;
}

/*---------------------------------
    Color CSS For Elements 
-----------------------------------*/
.theme-dark body {
  background-color: #201751;
  color: rgb(229.5, 229.5, 229.5);
}
.theme-dark h1, .theme-dark h2, .theme-dark h3, .theme-dark h4, .theme-dark h5, .theme-dark h6 {
  color: #FFF;
}
.theme-dark p, .theme-dark p.lead {
  color: rgb(229.5, 229.5, 229.5);
  line-height: 1.7;
}
.theme-dark .text-body-secondary, .theme-dark .text-muted {
  color: rgb(127.5, 127.5, 127.5) !important;
}
.theme-dark .disabled {
  color: #666666;
}
.theme-dark a, .theme-dark a.link-primary {
  color: rgb(178.5, 178.5, 178.5);
}
.theme-dark a:hover, .theme-dark a:focus, .theme-dark a.link-primary:hover, .theme-dark a.link-primary:focus {
  color: #FFF;
}
.theme-dark a:visited, .theme-dark a.link-primary:visited {
  opacity: 0.85;
}
.theme-dark a.link-secondary {
  color: rgb(178.5, 178.5, 178.5);
}
.theme-dark a.link-secondary:hover, .theme-dark a.link-secondary:focus {
  color: #FFF;
}
.theme-dark a.link-secondary:visited {
  opacity: 0.85;
}
.theme-dark .link-primary-alt {
  color: rgb(178.5, 178.5, 178.5);
}
.theme-dark .link-primary-alt:hover {
  color: #61C01A;
}
.theme-dark .link-secondary-alt {
  color: rgb(144.4, 210.9, 94.7);
}
.theme-dark .link-secondary-alt:hover {
  color: #201751;
}
.theme-dark .btn {
  background-color: #FFF;
  color: #201751;
}
.theme-dark .btn:hover {
  color: #FFF;
}
.theme-dark .btn:hover:after {
  background-color: #61C01A;
}
.theme-dark .btn.style1 {
  background-color: #FFF;
  color: #201751;
}
.theme-dark .btn.style1:hover {
  color: #FFF;
}
.theme-dark .btn.style1:hover:after {
  background-color: #61C01A;
}
.theme-dark article {
  border-bottom-color: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.85);
}
.theme-dark article .article-header span {
  color: #61C01A;
}
.theme-dark article .article-header h1, .theme-dark article .article-header h2, .theme-dark article .article-header h3, .theme-dark article .article-header h4, .theme-dark article .article-header h5, .theme-dark article .article-header h6 {
  color: #FFF;
}
.theme-dark article strong, .theme-dark article b {
  color: #201751;
}
.theme-dark article em, .theme-dark article i {
  color: #61C01A;
}
.theme-dark article a {
  color: rgb(144.4, 210.9, 94.7);
}
.theme-dark article a:hover {
  color: #61C01A;
}
.theme-dark article h1, .theme-dark article h2, .theme-dark article h3, .theme-dark article h4, .theme-dark article h5, .theme-dark article h6 {
  color: #FFF;
}
.theme-dark article blockquote {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
}
.theme-dark article ol li, .theme-dark article ul li {
  color: #FFF;
}
.theme-dark article ul {
  list-style: none;
}
.theme-dark article ul li:before {
  color: #61C01A;
}
.theme-dark article.ul-style-2 ul li:before {
  color: #61C01A;
  background-color: rgba(97, 192, 26, 0.1);
}
.theme-dark article table th, .theme-dark article table td {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.theme-dark article table th {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
}
.theme-dark .content-wrap .content-header span {
  color: #61C01A;
}
.theme-dark .content-wrap .content-header h1, .theme-dark .content-wrap .content-header h2, .theme-dark .content-wrap .content-header h3, .theme-dark .content-wrap .content-header h4, .theme-dark .content-wrap .content-header h5, .theme-dark .content-wrap .content-header h6 {
  color: #FFF;
}
.theme-dark .block-wrap .block-main-header span {
  color: #61C01A;
}
.theme-dark .block-wrap .block-main-header h1,
.theme-dark .block-wrap .block-main-header h2,
.theme-dark .block-wrap .block-main-header h3,
.theme-dark .block-wrap .block-main-header h4,
.theme-dark .block-wrap .block-main-header h5,
.theme-dark .block-wrap .block-main-header h6 {
  color: #FFF;
}
.theme-dark .block-wrap .block-sub-header span {
  color: #61C01A;
}
.theme-dark .block-wrap .block-sub-header h1,
.theme-dark .block-wrap .block-sub-header h2,
.theme-dark .block-wrap .block-sub-header h3,
.theme-dark .block-wrap .block-sub-header h4,
.theme-dark .block-wrap .block-sub-header h5,
.theme-dark .block-wrap .block-sub-header h6 {
  color: #FFF;
}
.theme-dark .block-wrap .block-items .block-item .block-card .item-header .item-title span {
  color: #61C01A;
}
.theme-dark .block-wrap .block-items .block-item .block-card .item-header .item-title h1,
.theme-dark .block-wrap .block-items .block-item .block-card .item-header .item-title h2,
.theme-dark .block-wrap .block-items .block-item .block-card .item-header .item-title h3,
.theme-dark .block-wrap .block-items .block-item .block-card .item-header .item-title h4,
.theme-dark .block-wrap .block-items .block-item .block-card .item-header .item-title h5,
.theme-dark .block-wrap .block-items .block-item .block-card .item-header .item-title h6 {
  color: #FFF;
}
.theme-dark .block-wrap.block-style-1 .block-items .block-item .block-card {
  background-color: #FFF;
}
.theme-dark .block-wrap.block-style-1 .block-items .block-item .block-card .item-header .item-icon {
  color: #61C01A;
}
.theme-dark .block-wrap.block-style-1 .block-items .block-item .block-card .item-header .item-title h5 {
  color: #61C01A;
}
.theme-dark .block-wrap.block-style-1 .block-items .block-item .block-card .item-content * {
  color: #201751;
}
.theme-dark .block-wrap.block-style-2 .block-items .block-item .block-card {
  background-color: #FFF;
}
.theme-dark .block-wrap.block-style-2 .block-items .block-item .block-card .item-header .item-icon {
  color: #61C01A;
}
.theme-dark .block-wrap.block-style-2 .block-items .block-item .block-card .item-header .item-title h5 {
  color: #61C01A;
}
.theme-dark .block-wrap.block-style-2 .block-items .block-item .block-card .item-content * {
  color: #201751;
}
.theme-dark .block-wrap.block-style-3 .block-items .block-item .block-card {
  background-color: #FFF;
}
.theme-dark .block-wrap.block-style-3 .block-items .block-item .block-card .item-header .item-icon {
  color: #61C01A;
}
.theme-dark .block-wrap.block-style-3 .block-items .block-item .block-card .item-header .item-title h5 {
  color: #61C01A;
}
.theme-dark .block-wrap.block-style-3 .block-items .block-item .block-card .item-content * {
  color: #201751;
}
.theme-dark .block-wrap.block-style-4 .block-items .block-card {
  border: 2px solid #FFF;
}
.theme-dark .block-wrap.block-style-4 .block-items .block-card .item-content article ol li::before {
  background-color: rgba(255, 255, 255, 0.85);
  color: #201751;
}
.theme-dark .block-wrap.block-style-5 .block-items .block-item {
  background-color: #FFF;
}
.theme-dark .block-wrap.block-style-5 .block-items .block-item .block-card .item-header .item-icon {
  color: #61C01A;
}
.theme-dark .block-wrap.block-style-5 .block-items .block-item .block-card .item-header .item-title h5 {
  color: #61C01A;
}
.theme-dark .block-wrap.block-style-5 .block-items .block-item .block-card .item-content * {
  color: #201751;
}
.theme-dark .block-wrap.block-style-5 .block-items .block-item .block-card:hover .item-header .item-icon {
  color: #FFF;
}
.theme-dark .block-wrap.block-style-5 .block-items .block-item .block-card:hover .item-header .item-title h5 {
  color: #FFF;
}
.theme-dark .block-wrap.block-style-6 .block-items .block-item .block-card {
  background-color: #FFF;
}
.theme-dark .block-wrap.block-style-6 .block-items .block-item .block-card .item-header .item-icon i {
  color: #FFF;
}
.theme-dark .block-wrap.block-style-6 .block-items .block-item .block-card .item-header .item-icon:before {
  background: #201751;
}
.theme-dark .block-wrap.block-style-6 .block-items .block-item .block-card .item-header .item-icon:after {
  background-color: #201751;
}
.theme-dark .block-wrap.block-style-6 .block-items .block-item .block-card .item-header .item-title h1 {
  color: #201751;
}
.theme-dark .block-wrap.block-style-6 .block-items .block-item .block-card .item-content * {
  color: #201751 !important;
}
.theme-dark .block-wrap.block-style-6 .block-items .block-item .block-card:after {
  background-color: #61C01A;
}
.theme-dark .block-wrap.block-style-6 .block-items .block-item .block-card:hover .item-header .item-icon i {
  color: #61C01A;
}
.theme-dark .block-wrap.block-style-6 .block-items .block-item .block-card:hover .item-header .item-icon:before {
  background: #FFF;
}
.theme-dark .block-wrap.block-style-6 .block-items .block-item .block-card:hover .item-header .item-icon:after {
  background-color: #FFF;
}
.theme-dark .block-wrap.block-style-6 .block-items .block-item .block-card:hover .item-header .item-title h1 {
  color: #FFF;
}
.theme-dark .block-wrap.block-style-6 .block-items .block-item .block-card:hover .item-content * {
  color: #FFF !important;
}
.theme-dark .block-wrap.block-style-6 .block-items .block-item .block-card:hover .item-content article li:before, .theme-dark .block-wrap.block-style-6 .block-items .block-item .block-card:hover .item-content article a {
  color: #FFF !important;
}
.theme-dark .block-wrap.block-style-8 .block-header {
  color: #FFF;
}
.theme-dark .block-wrap.block-style-8 .block-text h1, .theme-dark .block-wrap.block-style-8 .block-text h2, .theme-dark .block-wrap.block-style-8 .block-text h3, .theme-dark .block-wrap.block-style-8 .block-text h4, .theme-dark .block-wrap.block-style-8 .block-text h5, .theme-dark .block-wrap.block-style-8 .block-text h6 {
  color: rgb(242.25, 242.25, 242.25);
}
.theme-dark .block-wrap.block-style-8 .block-text p {
  color: rgb(229.5, 229.5, 229.5);
}
.theme-dark .block-wrap.block-style-8 .block-text a {
  color: rgb(178.5, 178.5, 178.5);
}
.theme-dark .block-wrap.block-style-8 .block-text a:hover {
  color: #FFF;
}
.theme-dark .block-wrap.block-style-8 .block-text ul li {
  color: rgb(229.5, 229.5, 229.5);
}
.theme-dark .block-wrap.block-style-8 .block-text ul li:before {
  background-color: rgba(97, 192, 26, 0.1);
  color: #61C01A;
}
.theme-dark .block-wrap.block-style-9 .block-items .block-item .block-card .item-header .item-title h5 {
  color: #201751;
}
.theme-dark .block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step .step-header .step-number {
  background-color: #201751;
  color: #FFF;
}
.theme-dark .block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step .step-header h5 {
  color: #201751;
}
.theme-dark .block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step .step-body {
  color: rgb(54.3, 46.2, 98.4);
}
.theme-dark .block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step .step-body * {
  color: rgb(54.3, 46.2, 98.4);
}
.theme-dark .block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step::before {
  background-color: rgba(32, 23, 81, 0.2);
}
.theme-dark .accordion-steps .steps .step {
  border: 1px solid;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.16);
}
.theme-dark .accordion-steps .steps .step .step-header .step-number {
  background-color: rgba(97, 192, 26, 0.2);
  color: #61C01A;
}
.theme-dark .accordion-steps .steps .step .step-header h5 {
  color: #61C01A;
}
.theme-dark .accordion-steps .steps .step .step-body {
  color: rgb(229.5, 229.5, 229.5);
}
.theme-dark .accordion-steps .steps .step.open {
  background-color: #FFF;
}
.theme-dark .accordion-steps .steps .step.open .step-header .step-number {
  background-color: rgba(32, 23, 81, 0.2);
  color: #201751;
}
.theme-dark .accordion-steps .steps .step.open .step-header h5 {
  color: #201751;
}
.theme-dark .accordion-steps .steps .step.open .step-body {
  color: rgb(54.3, 46.2, 98.4);
}
.theme-dark .accordion-steps .steps .step.open .step-body p {
  color: rgb(54.3, 46.2, 98.4);
}
.theme-dark .accordion-steps .steps .step.open .step-body .video-btn .play-video .video-title {
  color: rgb(229.5, 229.5, 229.5);
}
.theme-dark .vertical-steps .steps .step .step-header .step-number {
  background-color: #FFF;
  color: #201751;
}
.theme-dark .vertical-steps .steps .step .step-header h5 {
  color: #FFF;
}
.theme-dark .vertical-steps .steps .step .step-body {
  color: rgb(229.5, 229.5, 229.5);
}
.theme-dark .vertical-steps .steps .step .step-body * {
  color: rgb(229.5, 229.5, 229.5);
}
.theme-dark .vertical-steps .steps .step::before {
  background-color: rgba(255, 255, 255, 0.2);
}
.theme-dark .section-title h2,
.theme-dark .content-title h2 {
  color: #FFF;
}
.theme-dark .section-title p,
.theme-dark .content-title p {
  color: rgb(242.25, 242.25, 242.25);
}
.theme-dark .section-title span,
.theme-dark .content-title span {
  color: #201751;
}
.theme-dark .section-title.style1 span,
.theme-dark .content-title.style1 span {
  color: #61C01A;
}
.theme-dark .section-title.style2 h2,
.theme-dark .content-title.style2 h2 {
  color: #61C01A;
}
.theme-dark .section-title.style2 p,
.theme-dark .content-title.style2 p {
  color: rgb(104.9, 195.15, 37.45);
}
.theme-dark .section-title.style2 span,
.theme-dark .content-title.style2 span {
  color: #61C01A;
}
.theme-dark .social-profile li a:hover {
  color: #61C01A;
}
.theme-dark .social-profile.style1 li a i, .theme-dark .social-profile.style2 li a i {
  color: #61C01A;
}
.theme-dark .social-profile.style1 li a {
  background-color: #201751;
}
.theme-dark .social-profile.style1 li a i {
  color: #61C01A;
}
.theme-dark .social-profile.style1 li a:hover {
  background-color: #61C01A;
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  transform: translateY(-3px);
}
.theme-dark .social-profile.style1 li a:hover i {
  color: #201751;
}
.theme-dark .social-profile.style2 li a {
  background-color: #FFF;
  border-color: #FFF;
  color: #201751;
}
.theme-dark .social-profile.style2 li a i {
  color: #201751;
}
.theme-dark .social-profile.style2 li a:hover {
  background-color: #FFF;
  color: #201751;
}
.theme-dark .social-profile.style2 li a:hover i {
  color: #201751;
}
.theme-dark .header-wrap {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.theme-dark .header-wrap .header-top {
  background-color: #201751;
}
.theme-dark .header-wrap .header-top .header-top-info .contact-info li a {
  color: rgb(229.5, 229.5, 229.5);
}
.theme-dark .header-wrap .header-top .header-top-info .contact-info li a:hover {
  color: #61C01A;
}
.theme-dark .header-wrap .header-top .header-top-info .contact-info li p {
  color: rgb(242.25, 242.25, 242.25);
}
.theme-dark .header-wrap .header-top .header-top-action .header-top-menu li:before {
  background-color: rgb(229.5, 229.5, 229.5);
}
.theme-dark .header-wrap .header-top .header-top-action .header-top-menu li a {
  color: rgb(229.5, 229.5, 229.5);
}
.theme-dark .header-wrap .header-top .header-top-action .header-top-menu li a:hover {
  color: #61C01A;
}
.theme-dark .header-wrap .header-top .header-top-action .lang-btn span.site-lang {
  color: #FFF;
}
.theme-dark .header-wrap .header-top .header-top-action .lang-btn:hover span.site-lang {
  color: #61C01A;
}
.theme-dark .header-wrap .header-bottom {
  background: #201751;
  border-bottom: 1px solid #cccccc;
  box-shadow: 0 15px 20px rgba(255, 255, 255, 0.09);
}
.theme-dark .header-wrap .header-bottom .navbar .navbar-brand img.logo-light {
  display: none;
}
.theme-dark .header-wrap .header-bottom .navbar .navbar-brand img.logo-dark {
  display: block;
}
.theme-dark .header-wrap .header-bottom .navbar .navbar-nav .nav-item:hover > a, .theme-dark .header-wrap .header-bottom .navbar .navbar-nav .nav-item:hover .menu-expand i {
  color: #61C01A;
}
.theme-dark .header-wrap .header-bottom .navbar .navbar-nav .nav-item > a {
  color: #FFF;
}
.theme-dark .header-wrap .header-bottom .navbar .navbar-nav .nav-item > a.active, .theme-dark .header-wrap .header-bottom .navbar .navbar-nav .nav-item > a:hover {
  color: #61C01A;
}
.theme-dark .header-wrap .header-bottom .navbar .navbar-nav > .nav-item > a:after {
  background: #61C01A;
}
.theme-dark .header-wrap .header-bottom .navbar .others-options .searchbox input {
  border-radius: 4px;
  border-bottom: 0px;
  line-height: 24px;
  padding-block: 7px 8px;
  background-color: #FFF;
  color: #201751;
}
.theme-dark .header-wrap .header-bottom .navbar .others-options .searchbox input::-webkit-input-placeholder {
  color: #201751;
}
.theme-dark .header-wrap .header-bottom .navbar .others-options .searchbox input:-moz-placeholder {
  color: #201751;
}
.theme-dark .header-wrap .header-bottom .navbar .others-options .searchbox input::-moz-placeholder {
  color: #201751;
}
.theme-dark .header-wrap .header-bottom .navbar .others-options .searchbox input:-ms-input-placeholder {
  color: #201751;
}
.theme-dark .header-wrap .header-bottom .navbar .others-options .searchbox button i {
  color: #201751;
}
.theme-dark .header-wrap .header-bottom .navbar .others-options .header-btn .btn.style1 {
  color: #201751;
  background-color: #FFF;
  border: 1px solid #201751;
}
.theme-dark .header-wrap .header-bottom .navbar .others-options .header-btn .btn.style1:hover {
  color: #FFF;
  border-color: #61C01A;
}
.theme-dark .header-wrap.sticky {
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
  -moz-box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}
.theme-dark .header-wrap.sticky .header-bottom {
  background-color: rgb(234.6, 234.6, 234.6);
}
.theme-dark .header-wrap.sticky .header-bottom .navbar .navbar-brand img.logo-light {
  display: block;
}
.theme-dark .header-wrap.sticky .header-bottom .navbar .navbar-brand img.logo-dark {
  display: none;
}
.theme-dark .header-wrap.sticky .header-bottom .navbar .others-options .searchbox input {
  border: 1px solid #201751;
  background-color: #FFF;
}
.theme-dark .search-area {
  background: rgba(32, 23, 81, 0.92);
}
.theme-dark aside.lang-panel {
  background: #201751;
}
.theme-dark aside.lang-panel .lang-panel-header {
  border-color: #666666;
}
.theme-dark aside.lang-panel .lang-panel-header h4.aside-title {
  color: #FFF;
}
.theme-dark aside.lang-panel .lang-panel-header button.close-aside i {
  color: #FFF;
}
.theme-dark aside.lang-panel .lang-panel-bottom {
  border-color: #666666;
}
.theme-dark aside.lang-panel .lang-panel-bottom .btn.style1 {
  color: #201751;
  background-color: #FFF;
  border: 1px solid #201751;
}
.theme-dark aside.lang-panel .lang-panel-bottom .btn.style1:hover {
  color: #FFF;
  border-color: #61C01A;
}
@media only screen and (max-width: 767.98px) {
  .theme-dark .header-wrap .header-top {
    background-color: #201751;
  }
  .theme-dark .header-wrap .header-top .close-sidebar i {
    color: #FFF;
  }
}
@media only screen and (max-width: 1199.98px) {
  .theme-dark .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item .menu-expand i {
    color: #FFF;
  }
  .theme-dark .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item:hover > a, .theme-dark .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item:hover .menu-expand i {
    color: #61C01A;
  }
  .theme-dark .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item a.btn.style1 {
    color: #201751;
    background-color: #FFF;
  }
  .theme-dark .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item a.btn.style1:hover {
    background-color: transparent;
    color: #FFF;
  }
  .theme-dark .header-wrap .header-bottom .container .mobile-bar-wrap .lang-btn span.site-lang {
    color: #FFF;
  }
  .theme-dark .header-wrap .header-bottom .container .mobile-bar-wrap .searchbtn i {
    color: #FFF;
  }
  .theme-dark .header-wrap .header-bottom .container .mobile-bar-wrap .mobile-menu a {
    background: #FFF;
  }
  .theme-dark .header-wrap .header-bottom .container .mobile-bar-wrap .mobile-menu a i {
    color: #201751;
  }
  .theme-dark .header-wrap .header-bottom .container .mobile-bar-wrap .mobile-menu a:hover {
    box-shadow: 0px 0px 12px 0px #FFF;
  }
  .theme-dark .header-wrap.sticky .header-bottom .container .mobile-bar-wrap .lang-btn span.site-lang {
    color: #201751;
  }
  .theme-dark .header-wrap.sticky .header-bottom .container .mobile-bar-wrap .searchbtn i {
    color: #201751;
  }
  .theme-dark .header-wrap.sticky .header-bottom .container .mobile-bar-wrap .mobile-menu a {
    background: #201751;
  }
  .theme-dark .header-wrap.sticky .header-bottom .container .mobile-bar-wrap .mobile-menu a i {
    color: #FFF;
  }
  .theme-dark .header-wrap.sticky .header-bottom .container .mobile-bar-wrap .mobile-menu a:hover {
    box-shadow: 0px 0px 12px 0px #201751;
  }
  .theme-dark .menu-close i {
    color: #FFF;
  }
  .theme-dark .main-menu-wrap {
    background-color: #201751;
  }
  .theme-dark .header-wrap .header-bottom .main-menu-wrap #menu > ul > li > a::after {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .theme-dark .header-wrap .header-bottom .navbar .navbar-nav .nav-item.lang-flag .lang-btn span.site-lang {
    color: #FFF;
  }
  .theme-dark .header-wrap .header-bottom .navbar .navbar-nav .nav-item.lang-flag .lang-btn:hover span.site-lang {
    color: #61C01A;
  }
  .theme-dark .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a {
    border-bottom: 1px solid rgb(239.39, 238.76, 242.82);
  }
  .theme-dark .header-wrap.sticky .header-bottom .navbar .navbar-nav .nav-item a {
    color: #201751;
  }
  .theme-dark .header-wrap.sticky .header-bottom .navbar .navbar-nav .nav-item a.active, .theme-dark .header-wrap.sticky .header-bottom .navbar .navbar-nav .nav-item a:hover {
    color: #61C01A;
  }
  .theme-dark .header-wrap.sticky .header-bottom .navbar .navbar-nav .nav-item.lang-flag .lang-btn span.site-lang {
    color: #201751;
  }
  .theme-dark .header-wrap.sticky .header-bottom .navbar .navbar-nav .nav-item.lang-flag .lang-btn:hover span.site-lang {
    color: #61C01A;
  }
}
.theme-dark .hero-wrap .hero-content .hero-btn .btn.style1 {
  background-color: #FFF;
  color: #201751;
}
.theme-dark .hero-wrap .hero-content .hero-btn .btn.style1:hover {
  color: #FFF;
}
.theme-dark .hero-wrap .hero-content .hero-btn .btn.style1:hover:after {
  background-color: #61C01A;
}
.theme-dark .hero-wrap .hero-content .hero-btn .play-video span {
  color: #FFF;
}
.theme-dark .hero-wrap.style3 {
  background: #201751;
  background: linear-gradient(0deg, rgb(32, 23, 81) 65%, rgba(0, 0, 0, 0.9) 100%);
}
.theme-dark .hero-wrap.style3 .hero-content span {
  color: #61C01A;
}
.theme-dark .hero-wrap.style3 .hero-content h1, .theme-dark .hero-wrap.style3 .hero-content h2 {
  color: #FFF;
}
.theme-dark .hero-wrap.style3 .hero-content p {
  color: rgb(242.25, 242.25, 242.25);
}
.theme-dark .hero-wrap.style3 .hero-content .hero-btn .btn.style1 {
  background-color: #FFF;
  color: #201751;
}
.theme-dark .hero-wrap.style3 .hero-content .hero-btn .btn.style1:hover {
  color: #FFF;
}
.theme-dark .hero-wrap.style3 .hero-content .hero-btn .btn.style1:hover:after {
  background-color: #61C01A;
}
.theme-dark .hero-wrap.style3 .hero-content .hero-btn .play-video span {
  color: #FFF;
}
.theme-dark .hero-wrap.style4 {
  background: #201751;
  background: linear-gradient(0deg, rgb(32, 23, 81) 65%, rgba(0, 0, 0, 0.9) 100%);
}
.theme-dark .hero-wrap.style4 .hero-content span {
  color: #61C01A;
}
.theme-dark .hero-wrap.style4 .hero-content h1, .theme-dark .hero-wrap.style4 .hero-content h2 {
  color: #FFF;
}
.theme-dark .hero-wrap.style4 .hero-content p {
  color: rgb(242.25, 242.25, 242.25);
}
.theme-dark .hero-wrap.style4 .hero-content .hero-btn .btn.style1 {
  background-color: #FFF;
  color: #201751;
}
.theme-dark .hero-wrap.style4 .hero-content .hero-btn .btn.style1:hover {
  color: #FFF;
}
.theme-dark .hero-wrap.style4 .hero-content .hero-btn .btn.style1:hover:after {
  background-color: #61C01A;
}
.theme-dark .hero-wrap.style4 .hero-content .hero-btn .play-video span {
  color: #FFF;
}
.theme-dark .trustpilot-section .tp-content .tp-title {
  color: #FFF;
}
.theme-dark .trustpilot-section .tp-content .tp-details {
  color: #FFF !important;
}
.theme-dark .trustpilot-section .tp-rating-card {
  background: #201751;
  color: #FFF;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.theme-dark .trustpilot-section .tp-rating-card .tp-rating-header {
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.theme-dark .trustpilot-section .tp-rating-card .tp-rating-header .tp-rating-sub {
  font-size: 16px;
  opacity: 0.8;
}
.theme-dark .trustpilot-section .tp-rating-card .tp-rating-stars {
  color: #61C01A;
  font-size: 22px;
  letter-spacing: 1px;
  margin: 10px 0;
}
.theme-dark .trustpilot-section .tp-rating-card .tp-rating-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  opacity: 0.9;
}
.theme-dark .trustpilot-section .tp-rating-card .tp-rating-meta .tp-rating-count {
  font-size: 13px;
  opacity: 0.75;
}
.theme-dark .trustpilot-section .tp-rating-card .tp-rating-footer {
  margin-top: 12px;
}
.theme-dark .trustpilot-section .tp-rating-card .tp-rating-footer img {
  width: 72%;
  height: auto;
}
.theme-dark .trustpilot-section .tp-rating-card .tp-rating-footer img.light-logo {
  display: block;
}
.theme-dark .trustpilot-section .tp-rating-card .tp-rating-footer img.dark-logo {
  display: none;
}
.theme-dark .trustpilot-section .tp-review-box .tp-review-text {
  color: #201751 !important;
}
.theme-dark .trustpilot-section .tp-review-box .tp-review-text * {
  color: #201751 !important;
}
.theme-dark .trustpilot-section .tp-review-box .tp-review-user {
  color: rgba(32, 23, 81, 0.85);
}
.theme-dark .money-transfer-form {
  background: rgba(32, 23, 81, 0.25);
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
}
.theme-dark .money-transfer-form .money-transfer-content {
  background: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.theme-dark .money-transfer-form .money-transfer-content .form-group label {
  color: #201751;
}
.theme-dark .money-transfer-form .money-transfer-content .form-group input {
  border: 1px solid #201751;
}
.theme-dark .money-transfer-form .money-transfer-content .form-group select {
  border: 1px solid #201751;
  border-inline-start: 0px;
  border-start-start-radius: 0px;
  border-end-start-radius: 0px;
}
.theme-dark .money-transfer-form .money-transfer-content .form-group select.sending-via {
  border-start-start-radius: 4px;
  border-end-start-radius: 4px;
  border-inline-start: 1px solid #201751;
}
.theme-dark .money-transfer-form .money-transfer-content .form-group .sending-via-hint {
  color: var(--bs-red);
}
.theme-dark .money-transfer-form .money-transfer-content .form-group.transfer-details {
  background-color: #201751;
}
.theme-dark .money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row {
  color: #FFF;
}
.theme-dark .money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.total-fee {
  border-top: 1px solid rgb(76.6, 69.4, 115.8);
}
.theme-dark .money-transfer-form .money-transfer-content .form-group.transfer-details .form-check-wrap .form-check input[type=checkbox] {
  accent-color: #FFF;
}
.theme-dark .money-transfer-form .money-transfer-content .form-group.transfer-details .form-check-wrap .form-check .check-label {
  color: #FFF;
}
.theme-dark .money-transfer-form .money-transfer-content .form-group.transfer-details .form-check-wrap .form-check .check-label a {
  color: #FFF;
}
.theme-dark .money-transfer-form .money-transfer-content .form-group.transfer-details .form-check-wrap .form-check .check-label a:hover {
  color: rgb(229.5, 229.5, 229.5);
}
.theme-dark .money-transfer-form .money-transfer-content .form-group.transfer-details .form-btn button {
  background-color: #FFF;
  color: #201751;
}
.theme-dark .money-transfer-form .money-transfer-content .form-group.transfer-details .form-btn button:hover {
  color: #FFF;
}
.theme-dark .money-transfer-form .money-transfer-content .form-group.transfer-error {
  background-color: #FFF;
  border: 1px solid #201751;
}
.theme-dark .money-transfer-form .money-transfer-content .form-group.transfer-error .error-details {
  color: var(--bs-red);
}
.theme-dark .pickup-locations .pickup-locations-form {
  background: #FFF;
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
}
.theme-dark .pickup-locations .pickup-locations-form h3.form-title {
  color: #201751;
}
.theme-dark .pickup-locations .pickup-locations-form .pickup-locations-overlay {
  background-color: rgba(32, 23, 81, 0.15);
}
.theme-dark .pickup-locations .pickup-locations-form .form-group label {
  color: #201751;
}
.theme-dark .pickup-locations .pickup-locations-form .form-group select {
  background-color: #FFF;
  color: #201751;
}
.theme-dark .pickup-locations .pickup-locations-form .form-group.form-btn button {
  background-color: #61C01A;
  color: #FFF;
}
.theme-dark .pickup-locations .pickup-locations-form .form-group.form-btn button:hover {
  color: #FFF;
}
.theme-dark .pickup-locations .pickup-locations-form .form-group .pickup-locations-error {
  background-color: #201751;
  border: 1px solid #FFF;
}
.theme-dark .pickup-locations .pickup-locations-form .form-group .pickup-locations-error .error-details {
  color: var(--bs-warning);
}
.theme-dark .pickup-locations .pickup-locations-form .form-group div.is-invalid {
  color: var(--bs-form-invalid-color);
}
.theme-dark .pickup-locations .locations-wrap .location-wrap .location-card {
  border: 2px solid #61C01A;
  box-shadow: 0px 16px 8px -12px rgba(97, 192, 26, 0.45);
  background-color: #FFF;
}
.theme-dark .pickup-locations .locations-wrap .location-wrap .location-card .location-header {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.theme-dark .pickup-locations .locations-wrap .location-wrap .location-card .location-header .location-icon {
  color: #61C01A;
}
.theme-dark .pickup-locations .locations-wrap .location-wrap .location-card .location-header .location-title h5 {
  color: #201751;
}
.theme-dark .pickup-locations .locations-wrap .location-wrap .location-card .location-info .info-details {
  color: #201751;
}
.theme-dark .pickup-locations .locations-wrap .location-wrap .location-card .location-info .info-details .telephone-link {
  color: #61C01A;
}
.theme-dark .pickup-locations .locations-wrap .location-wrap .location-card .location-map .get-direction-link {
  color: #61C01A;
}
.theme-dark .pickup-locations .google-map .gm-style-iw-ch {
  color: #201751;
}
.theme-dark .pickup-locations .google-map .gm-style-iw-d .info-details {
  color: #201751;
}
.theme-dark .pickup-locations .google-map .gm-style-iw-d .info-details .telephone-link {
  color: #61C01A;
}
.theme-dark .send-from-ocations .send-money-from-locations-form {
  background: #FFF;
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
}
.theme-dark .send-from-ocations .send-money-from-locations-form h3.form-title {
  color: #201751;
}
.theme-dark .send-from-ocations .send-money-from-locations-form .send-money-from-locations-overlay {
  background-color: rgba(32, 23, 81, 0.15);
}
.theme-dark .send-from-ocations .send-money-from-locations-form .form-group label {
  color: #201751;
}
.theme-dark .send-from-ocations .send-money-from-locations-form .form-group select {
  background-color: #FFF;
  color: #201751;
}
.theme-dark .send-from-ocations .send-money-from-locations-form .form-group.form-btn button {
  background-color: #61C01A;
  color: #FFF;
}
.theme-dark .send-from-ocations .send-money-from-locations-form .form-group.form-btn button:hover {
  color: #FFF;
}
.theme-dark .send-from-ocations .send-money-from-locations-form .form-group .send-money-from-locations-error {
  background-color: #201751;
  border: 1px solid #FFF;
}
.theme-dark .send-from-ocations .send-money-from-locations-form .form-group .send-money-from-locations-error .error-details {
  color: var(--bs-warning);
}
.theme-dark .send-from-ocations .send-money-from-locations-form .form-group div.is-invalid {
  color: var(--bs-form-invalid-color);
}
.theme-dark .send-from-ocations .locations-wrap .location-wrap .location-card {
  border: 2px solid #61C01A;
  box-shadow: 0px 16px 8px -12px rgba(97, 192, 26, 0.45);
  background-color: #FFF;
}
.theme-dark .send-from-ocations .locations-wrap .location-wrap .location-card .location-header {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.theme-dark .send-from-ocations .locations-wrap .location-wrap .location-card .location-header .location-icon {
  color: #61C01A;
}
.theme-dark .send-from-ocations .locations-wrap .location-wrap .location-card .location-header .location-title h5 {
  color: #201751;
}
.theme-dark .send-from-ocations .locations-wrap .location-wrap .location-card .location-info .info-details {
  color: #201751;
}
.theme-dark .send-from-ocations .locations-wrap .location-wrap .location-card .location-info .info-details .telephone-link {
  color: #61C01A;
}
.theme-dark .send-from-ocations .locations-wrap .location-wrap .location-card .location-map .get-direction-link {
  color: #61C01A;
}
.theme-dark .send-from-ocations .google-map .gm-style-iw-ch {
  color: #201751;
}
.theme-dark .send-from-ocations .google-map .gm-style-iw-d .info-details {
  color: #201751;
}
.theme-dark .send-from-ocations .google-map .gm-style-iw-d .info-details .telephone-link {
  color: #61C01A;
}
.theme-dark .breadcrumb-wrap {
  background: #201751;
  background: linear-gradient(0deg, rgb(32, 23, 81) 65%, rgba(0, 0, 0, 0.9) 100%);
}
.theme-dark .breadcrumb-wrap h2 {
  color: #FFF;
}
.theme-dark .breadcrumb-wrap .breadcrumb-menu li:after {
  color: rgb(242.25, 242.25, 242.25);
}
.theme-dark .breadcrumb-wrap .breadcrumb-menu li:last-child {
  color: #61C01A;
}
.theme-dark .breadcrumb-wrap .breadcrumb-menu li a {
  color: rgb(242.25, 242.25, 242.25);
}
.theme-dark .breadcrumb-wrap .breadcrumb-menu li a:hover {
  color: #61C01A;
}
.theme-dark .popular-countries .country-badge {
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}
.theme-dark .popular-countries .country-badge:hover {
  box-shadow: 0px 4px 12px rgba(255, 255, 255, 0.15);
  background-color: #FFF;
}
.theme-dark .counter-wrap:after {
  background-color: #201751;
}
.theme-dark .blog-wrap {
  background-color: #201751;
}
.theme-dark .blog-filter-title {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 24px;
  color: #FFF;
}
.theme-dark .blog-filter-title span {
  font-weight: 600;
  color: #FFF;
}
.theme-dark .blog-card.style1 {
  background-color: #FFF;
  box-shadow: 0px 6px 50px rgba(255, 255, 255, 0.07);
}
.theme-dark .blog-card.style1 .blog-info a {
  color: #201751;
}
.theme-dark .blog-card.style1 .blog-info a.link {
  color: #201751;
}
.theme-dark .blog-card.style1 .blog-info a.link.style1 {
  color: #201751;
}
.theme-dark .blog-card.style1 .blog-info a.link.style2 {
  color: #FFF;
}
.theme-dark .blog-card.style1 .blog-info p {
  color: #201751;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.theme-dark .blog-card.style1 .blog-info:hover a {
  color: #61C01A;
}
.theme-dark .blog-card.style1 .blog-info:hover a.link {
  color: #61C01A;
}
.theme-dark .blog-card.style1 .blog-info:hover a.link.style1 {
  color: #61C01A;
}
.theme-dark .blog-card.style1 .blog-info:hover a.link.style2 {
  color: #61C01A;
}
.theme-dark .blog-card.style1 .blog-info:hover a.link:after {
  visibility: visible;
  opacity: 1;
  width: 100%;
}
.theme-dark .blog-card:hover {
  box-shadow: 0px 40px 51px -16px rgba(255, 255, 255, 0.1);
  border-color: transparent;
}
.theme-dark .search-box .form-group input {
  background: #FFF;
  color: #201751;
  border: 1px solid #61C01A;
}
.theme-dark .search-box .form-group input:focus {
  color: #61C01A;
  box-shadow: 1px 2px 4px 0px #61C01A;
}
.theme-dark .search-box .form-group button i {
  color: #61C01A;
}
.theme-dark .search-box .form-group .invalid-feedback {
  color: var(--bs-warning);
}
.theme-dark .trustpilot-section .tp-rating-card {
  background: #FFF;
  color: #201751;
}
.theme-dark .trustpilot-section .tp-rating-card .tp-rating-footer img.light-logo {
  display: none;
}
.theme-dark .trustpilot-section .tp-rating-card .tp-rating-footer img.dark-logo {
  display: block;
}
.theme-dark .testimonial-wrap {
  background-color: #201751;
}
.theme-dark .testimonial-slider-one {
  margin-top: -10px;
}
.theme-dark .testimonial-slider-one.owl-carousel .testimonial-card {
  box-shadow: 0 0px 15px rgba(255, 255, 255, 0.5);
}
.theme-dark .testimonial-slider-one.owl-carousel .testimonial-card .client-quote {
  color: #201751;
}
.theme-dark .testimonial-slider-one.owl-carousel .testimonial-card .client-info span, .theme-dark .testimonial-slider-one.owl-carousel .testimonial-card .client-info h3 {
  color: #201751;
}
.theme-dark .testimonial-slider-one.owl-carousel .owl-nav button.owl-prev, .theme-dark .testimonial-slider-one.owl-carousel .owl-nav button.owl-next {
  background-color: rgba(255, 255, 255, 0.25);
}
.theme-dark .testimonial-slider-one.owl-carousel .owl-nav button.owl-prev i, .theme-dark .testimonial-slider-one.owl-carousel .owl-nav button.owl-next i {
  color: #201751;
}
.theme-dark .testimonial-slider-one.owl-carousel .owl-nav button.owl-prev:hover, .theme-dark .testimonial-slider-one.owl-carousel .owl-nav button.owl-next:hover {
  background: #FFF;
}
.theme-dark .testimonial-slider-one.owl-carousel .owl-nav button.owl-prev:hover i, .theme-dark .testimonial-slider-one.owl-carousel .owl-nav button.owl-next:hover i {
  color: #201751;
}
.theme-dark .page-nav li a {
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.theme-dark .page-nav li a.active, .theme-dark .page-nav li a:hover {
  opacity: 1;
  color: #FFF;
  background-color: #61C01A;
  border-color: #61C01A;
}
.theme-dark .page-nav li a.active i, .theme-dark .page-nav li a:hover i {
  color: #FFF;
}
.theme-dark .sidebar .sidebar-widget {
  background: rgba(0, 0, 0, 0.4);
}
.theme-dark .sidebar .sidebar-widget.style2 {
  background: transparent;
  box-shadow: 0px 0px 25px rgba(85, 85, 85, 0.1);
}
.theme-dark .sidebar .sidebar-widget.style3 h4 {
  padding-bottom: 0;
  color: #FFF;
}
.theme-dark .sidebar .sidebar-widget.style4 {
  background: transparent;
  padding: 0;
}
.theme-dark .sidebar .sidebar-widget h4 {
  color: #FFF;
}
.theme-dark .sidebar .sidebar-widget h4:after {
  background: #FFF;
}
.theme-dark .category-box ul li a {
  color: #FFF;
}
.theme-dark .category-box ul li a i {
  color: #FFF;
}
.theme-dark .category-box ul li a span {
  color: #FFF;
}
.theme-dark .category-box ul li a:hover {
  color: #61C01A;
}
.theme-dark .category-box ul li a:hover i {
  color: #61C01A;
}
.theme-dark .category-box ul li a.active {
  color: #61C01A;
  pointer-events: none;
  cursor: default;
}
.theme-dark .category-box ul li a.active i {
  color: #61C01A;
}
.theme-dark .category-box ul li a.active span {
  color: #61C01A;
}
.theme-dark .pp-post-item .pp-post-info h6 a {
  color: #FFF;
}
.theme-dark .pp-post-item .pp-post-info span {
  color: #FFF;
}
.theme-dark .pp-post-item .pp-post-info span i {
  color: #61C01A;
}
.theme-dark .pp-post-item:hover .pp-post-info h6 a {
  color: #61C01A;
}
.theme-dark .tag-list ul li a {
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.theme-dark .tag-list ul li a:hover {
  background-color: #FFF;
  color: #61C01A;
}
.theme-dark .tag-list ul li a.active {
  pointer-events: none;
  cursor: default;
  background-color: #FFF;
  color: #61C01A;
  border-color: #61C01A;
}
.theme-dark .tag-list.style3 li a {
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}
.theme-dark .blog-details-wrap article, .theme-dark .news-details-wrap article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  color: rgba(255, 255, 255, 0.85);
}
.theme-dark .blog-details-wrap article .article-header span, .theme-dark .news-details-wrap article .article-header span {
  color: #61C01A;
}
.theme-dark .blog-details-wrap article .article-header h1, .theme-dark .blog-details-wrap article .article-header h2, .theme-dark .blog-details-wrap article .article-header h3, .theme-dark .blog-details-wrap article .article-header h4, .theme-dark .blog-details-wrap article .article-header h5, .theme-dark .blog-details-wrap article .article-header h6, .theme-dark .news-details-wrap article .article-header h1, .theme-dark .news-details-wrap article .article-header h2, .theme-dark .news-details-wrap article .article-header h3, .theme-dark .news-details-wrap article .article-header h4, .theme-dark .news-details-wrap article .article-header h5, .theme-dark .news-details-wrap article .article-header h6 {
  color: #FFF;
}
.theme-dark .blog-details-wrap article strong, .theme-dark .blog-details-wrap article b, .theme-dark .news-details-wrap article strong, .theme-dark .news-details-wrap article b {
  color: #FFF;
}
.theme-dark .blog-details-wrap article em, .theme-dark .blog-details-wrap article i, .theme-dark .news-details-wrap article em, .theme-dark .news-details-wrap article i {
  color: #61C01A;
}
.theme-dark .blog-details-wrap article a, .theme-dark .news-details-wrap article a {
  color: rgb(144.4, 210.9, 94.7);
}
.theme-dark .blog-details-wrap article a:hover, .theme-dark .news-details-wrap article a:hover {
  color: #61C01A;
}
.theme-dark .blog-details-wrap article h1, .theme-dark .blog-details-wrap article h2, .theme-dark .blog-details-wrap article h3, .theme-dark .blog-details-wrap article h4, .theme-dark .blog-details-wrap article h5, .theme-dark .blog-details-wrap article h6, .theme-dark .news-details-wrap article h1, .theme-dark .news-details-wrap article h2, .theme-dark .news-details-wrap article h3, .theme-dark .news-details-wrap article h4, .theme-dark .news-details-wrap article h5, .theme-dark .news-details-wrap article h6 {
  color: #FFF;
}
.theme-dark .blog-details-wrap article ol li, .theme-dark .blog-details-wrap article ul li, .theme-dark .news-details-wrap article ol li, .theme-dark .news-details-wrap article ul li {
  color: #FFF;
}
.theme-dark .blog-details-wrap article ul, .theme-dark .news-details-wrap article ul {
  list-style: none;
}
.theme-dark .blog-details-wrap article ul li:before, .theme-dark .news-details-wrap article ul li:before {
  color: #61C01A;
}
.theme-dark .blog-details-wrap article.ul-style-2 ul li:before, .theme-dark .news-details-wrap article.ul-style-2 ul li:before {
  color: #61C01A;
  background-color: rgba(97, 192, 26, 0.1);
}
.theme-dark .blog-details-wrap article table th, .theme-dark .blog-details-wrap article table td, .theme-dark .news-details-wrap article table th, .theme-dark .news-details-wrap article table td {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.theme-dark .blog-details-wrap article table th, .theme-dark .news-details-wrap article table th {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
}
.theme-dark .blog-details-wrap .post-metainfo li, .theme-dark .news-details-wrap .post-metainfo li {
  color: #FFF;
}
.theme-dark .blog-details-wrap .post-metainfo li:after, .theme-dark .news-details-wrap .post-metainfo li:after {
  background-color: rgba(255, 255, 255, 0.7);
}
.theme-dark .blog-details-wrap .post-metainfo li a, .theme-dark .news-details-wrap .post-metainfo li a {
  color: rgb(144.4, 210.9, 94.7);
}
.theme-dark .blog-details-wrap .post-metainfo li a:hover, .theme-dark .news-details-wrap .post-metainfo li a:hover {
  color: #61C01A;
}
.theme-dark .blog-details-wrap .post-metainfo li i, .theme-dark .news-details-wrap .post-metainfo li i {
  color: #61C01A;
}
.theme-dark .blog-details-wrap .post-meta-option, .theme-dark .news-details-wrap .post-meta-option {
  border-color: rgba(255, 255, 255, 0.9);
}
.theme-dark .blog-details-wrap .post-tag ul li a, .theme-dark .news-details-wrap .post-tag ul li a {
  color: rgb(144.4, 210.9, 94.7);
}
.theme-dark .blog-details-wrap .post-tag ul li a:hover, .theme-dark .news-details-wrap .post-tag ul li a:hover {
  color: #61C01A;
}
.theme-dark .blog-details-wrap .post-tag span, .theme-dark .news-details-wrap .post-tag span {
  color: #FFF;
}
.theme-dark .blog-details-wrap .post-share span, .theme-dark .news-details-wrap .post-share span {
  color: #FFF;
}
.theme-dark .blog-details-wrap .comment-item-wrap .comment-item, .theme-dark .news-details-wrap .comment-item-wrap .comment-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}
.theme-dark .blog-details-wrap .comment-item-wrap .comment-item .comment-author-wrap .comment-author-name .comment-date, .theme-dark .news-details-wrap .comment-item-wrap .comment-item .comment-author-wrap .comment-author-name .comment-date {
  color: rgba(255, 255, 255, 0.6);
}
.theme-dark .blog-details-wrap .comment-box-title h4:after, .theme-dark .news-details-wrap .comment-box-title h4:after {
  background: #61C01A;
}
.theme-dark .blog-details-wrap .comment-form-wrap label, .theme-dark .news-details-wrap .comment-form-wrap label {
  color: rgb(229.5, 229.5, 229.5);
}
.theme-dark .blog-details-wrap .comment-form-wrap .comment-form .form-group > label, .theme-dark .news-details-wrap .comment-form-wrap .comment-form .form-group > label {
  color: rgba(0, 0, 0, 0.4);
}
.theme-dark .blog-details-wrap .comment-form-wrap .comment-form .form-group input,
.theme-dark .blog-details-wrap .comment-form-wrap .comment-form .form-group textarea, .theme-dark .news-details-wrap .comment-form-wrap .comment-form .form-group input,
.theme-dark .news-details-wrap .comment-form-wrap .comment-form .form-group textarea {
  background: #FFF;
  color: rgba(32, 23, 81, 0.85);
  border-color: #61C01A;
}
.theme-dark .blog-details-wrap .comment-form-wrap .comment-form .form-group input:focus,
.theme-dark .blog-details-wrap .comment-form-wrap .comment-form .form-group textarea:focus, .theme-dark .news-details-wrap .comment-form-wrap .comment-form .form-group input:focus,
.theme-dark .news-details-wrap .comment-form-wrap .comment-form .form-group textarea:focus {
  color: #201751;
  box-shadow: 1px 2px 4px 0px #61C01A;
}
.theme-dark .blog-details-wrap .comment-form-wrap .comment-form .form-group .comment-note, .theme-dark .news-details-wrap .comment-form-wrap .comment-form .form-group .comment-note {
  color: rgba(255, 255, 255, 0.85);
}
.theme-dark .blog-details-wrap .comment-form-wrap .comment-form .form-group .invalid-feedback, .theme-dark .news-details-wrap .comment-form-wrap .comment-form .form-group .invalid-feedback {
  color: var(--bs-warning);
}
.theme-dark .blog-details-wrap .comment-form-wrap .comment-form .checkbox label, .theme-dark .news-details-wrap .comment-form-wrap .comment-form .checkbox label {
  color: #FFF;
}
.theme-dark .blog-details-wrap .comment-form-wrap .comment-form .checkbox label:before, .theme-dark .news-details-wrap .comment-form-wrap .comment-form .checkbox label:before {
  border-color: #FFF;
}
.theme-dark .blog-details-wrap .comment-form-wrap .comment-form .checkbox a, .theme-dark .news-details-wrap .comment-form-wrap .comment-form .checkbox a {
  color: #FFF;
}
.theme-dark .blog-details-wrap .comment-form-wrap .comment-form .checkbox.style2 label:before, .theme-dark .news-details-wrap .comment-form-wrap .comment-form .checkbox.style2 label:before {
  border-color: #FFF;
}
.theme-dark .blog-details-wrap .comment-form-wrap .comment-form .checkbox input:checked + label:before, .theme-dark .news-details-wrap .comment-form-wrap .comment-form .checkbox input:checked + label:before {
  border-color: #61C01A;
}
.theme-dark .blog-details-wrap .comment-form-wrap .comment-form .checkbox input:checked + label:after, .theme-dark .news-details-wrap .comment-form-wrap .comment-form .checkbox input:checked + label:after {
  background: #61C01A;
}
.theme-dark .blog-details-wrap .comment-form-wrap .comment-form .btn.disabled, .theme-dark .blog-details-wrap .comment-form-wrap .comment-form .btn:disabled, .theme-dark .news-details-wrap .comment-form-wrap .comment-form .btn.disabled, .theme-dark .news-details-wrap .comment-form-wrap .comment-form .btn:disabled {
  background-color: #61C01A;
  color: #FFF;
}
.theme-dark .careers-wrap .careers-categories .category-badge {
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}
.theme-dark .careers-wrap .careers-categories .category-badge:hover {
  background-color: #FFF;
  box-shadow: 0px 4px 12px rgba(255, 255, 255, 0.15);
}
.theme-dark .careers-wrap .careers-list .career-card {
  border: 1px solid rgba(97, 192, 26, 0.85);
  box-shadow: 0px 2px 4px 0px rgba(97, 192, 26, 0.85);
  background-color: #FFF;
}
.theme-dark .careers-wrap .careers-list .career-card .career-title h3 {
  color: #201751;
}
.theme-dark .careers-wrap .careers-list .career-card .career-title a.career-apply {
  color: rgb(144.4, 210.9, 94.7);
}
.theme-dark .careers-wrap .careers-list .career-card .career-title a.career-apply:hover {
  color: #61C01A;
}
.theme-dark .careers-wrap .careers-list .career-card .career-category {
  color: #61C01A;
}
.theme-dark .careers-wrap .careers-list .career-card .badge {
  border: 2px solid #61C01A;
  color: #61C01A;
}
.theme-dark .faq-wrap .faq-list .faq-cat-list .faq-cat .faq-cat-title {
  color: rgb(178.5, 178.5, 178.5);
}
.theme-dark .faq-wrap .faq-list .faq-cat-list .faq-cat .badge {
  background-color: #FFF;
  color: #201751;
}
.theme-dark .faq-wrap .faq-list .faq-cat-list .faq-cat.active .faq-cat-title {
  color: #61C01A;
}
.theme-dark .faq-wrap .faq-list .faq-cat-list .faq-cat.active .badge {
  background-color: #61C01A;
  color: #FFF;
}
.theme-dark .faq-wrap .faq-list .faq-cat-list .faq-cat.active:hover .faq-cat-title {
  color: #61C01A;
}
.theme-dark .faq-wrap .faq-list .faq-cat-list .faq-cat:hover .faq-cat-title {
  color: #FFF;
}
.theme-dark .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-title {
  color: #FFF;
}
.theme-dark .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-title .badge {
  color: #201751;
  background-color: #FFF;
}
.theme-dark .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-title:hover {
  cursor: pointer;
}
.theme-dark .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-title:not(.collapsed) {
  color: #61C01A;
}
.theme-dark .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-title:not(.collapsed) .badge {
  color: #FFF;
  background-color: #61C01A;
}
.theme-dark .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse {
  border-bottom: 2px solid rgba(97, 192, 26, 0.85);
}
@media only screen and (min-width: 992px) {
  .theme-dark .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse {
    border-bottom: none;
  }
}
.theme-dark .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button {
  color: #201751;
  background-color: #FFF;
  border: 1px solid rgba(32, 23, 81, 0.1);
}
.theme-dark .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button.collapsed {
  color: #201751;
  background-color: #FFF;
}
.theme-dark .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button.collapsed span {
  background-color: #201751 !important;
}
.theme-dark .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button span {
  background-color: #201751;
}
.theme-dark .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button span i {
  color: #FFF;
}
.theme-dark .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button:not(.collapsed) {
  color: #201751;
  background: #FFF !important;
  border: 1px solid #FFF;
}
.theme-dark .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .accordion-collapse {
  border: none;
}
.theme-dark .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .accordion-collapse .question-answer {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #FFF;
}
.theme-dark .contact-info-area .contact-item {
  background: rgba(0, 0, 0, 0.4);
}
.theme-dark .contact-info-area .contact-item:after {
  background-color: #61C01A;
}
.theme-dark .contact-info-area .contact-item .contact-icon {
  background-color: #FFF;
}
.theme-dark .contact-info-area .contact-item .contact-icon i {
  color: #61C01A;
}
.theme-dark .contact-info-area .contact-item .contact-info h3 {
  color: #61C01A;
}
.theme-dark .contact-info-area .contact-item .contact-info a,
.theme-dark .contact-info-area .contact-item .contact-info p {
  color: #FFF;
}
.theme-dark .contact-info-area .contact-item:hover .contact-info {
  color: #FFF;
}
.theme-dark .contact-info-area .contact-item:hover .contact-info a,
.theme-dark .contact-info-area .contact-item:hover .contact-info h3,
.theme-dark .contact-info-area .contact-item:hover .contact-info p {
  color: #FFF;
}
.theme-dark .contact-info-area .contact-item:hover .contact-icon {
  background-color: #FFF;
}
.theme-dark .contact-info-area .contact-item:hover .contact-icon i {
  color: #61C01A;
}
.theme-dark .contact-form-wrap .contact-form .form-group > label {
  color: rgba(0, 0, 0, 0.4);
}
.theme-dark .contact-form-wrap .contact-form .form-group input,
.theme-dark .contact-form-wrap .contact-form .form-group textarea {
  background: #FFF;
  color: rgba(32, 23, 81, 0.85);
  border-color: #61C01A;
}
.theme-dark .contact-form-wrap .contact-form .form-group input:focus,
.theme-dark .contact-form-wrap .contact-form .form-group textarea:focus {
  color: #201751;
  box-shadow: 1px 2px 4px 0px #61C01A;
}
.theme-dark .contact-form-wrap .contact-form .form-group .invalid-feedback {
  color: var(--bs-warning);
}
.theme-dark .contact-form-wrap .contact-form .btn.disabled, .theme-dark .contact-form-wrap .contact-form .btn:disabled {
  background-color: #61C01A;
  color: #FFF;
}
.theme-dark .complaint-wrap .complaint-form .form-group input,
.theme-dark .complaint-wrap .complaint-form .form-group textarea {
  background: #FFF;
  color: rgba(32, 23, 81, 0.85);
}
.theme-dark .complaint-wrap .complaint-form .form-group input:focus,
.theme-dark .complaint-wrap .complaint-form .form-group textarea:focus {
  box-shadow: 0px 0px 4px 1px #61C01A;
  color: #201751;
}
.theme-dark .complaint-wrap .complaint-form .form-group select {
  background-color: #FFF;
  color: rgba(32, 23, 81, 0.85);
}
.theme-dark .complaint-wrap .complaint-form .form-group select:focus {
  border: 1px solid #61C01A;
  box-shadow: 0px 0px 4px 1px #61C01A;
  color: #201751;
}
.theme-dark .complaint-wrap .complaint-form .form-group .file-note {
  color: rgba(255, 255, 255, 0.85);
}
.theme-dark .complaint-wrap .complaint-form .form-group .invalid-feedback {
  color: var(--bs-warning);
}
.theme-dark .complaint-wrap .complaint-form .btn.disabled, .theme-dark .complaint-wrap .complaint-form .btn:disabled {
  background-color: #61C01A;
  color: #FFF;
}
.theme-dark .custom-form-wrap .custom-form .form-group input,
.theme-dark .custom-form-wrap .custom-form .form-group textarea {
  width: 100%;
  background: #FFF;
  color: rgba(32, 23, 81, 0.85);
  border: 1px solid #61C01A;
}
.theme-dark .custom-form-wrap .custom-form .form-group input:focus,
.theme-dark .custom-form-wrap .custom-form .form-group textarea:focus {
  color: #61C01A;
  box-shadow: 1px 2px 4px 0px #61C01A;
}
.theme-dark .custom-form-wrap .custom-form .form-group input[type=email],
.theme-dark .custom-form-wrap .custom-form .form-group input[type=number],
.theme-dark .custom-form-wrap .custom-form .form-group input[type=date],
.theme-dark .custom-form-wrap .custom-form .form-group input[type=file] {
  background: #FFF;
  color: rgba(32, 23, 81, 0.85);
  border: 1px solid #61C01A;
}
.theme-dark .custom-form-wrap .custom-form .form-group input[type=email]:focus,
.theme-dark .custom-form-wrap .custom-form .form-group input[type=number]:focus,
.theme-dark .custom-form-wrap .custom-form .form-group input[type=date]:focus,
.theme-dark .custom-form-wrap .custom-form .form-group input[type=file]:focus {
  color: #61C01A;
  box-shadow: 1px 2px 4px 0px #61C01A;
}
.theme-dark .custom-form-wrap .custom-form .form-group select {
  background-color: #FFF;
  color: rgba(32, 23, 81, 0.85);
  border: 1px solid #61C01A;
}
.theme-dark .custom-form-wrap .custom-form .form-group select:focus {
  color: #61C01A;
  box-shadow: 1px 2px 4px 0px #61C01A;
}
.theme-dark .custom-form-wrap .custom-form .form-group .form-check label {
  color: rgba(255, 255, 255, 0.85);
}
.theme-dark .custom-form-wrap .custom-form .form-group input[type=checkbox] {
  border: 2px solid #201751;
  background: #FFF;
}
.theme-dark .custom-form-wrap .custom-form .form-group input[type=checkbox]:checked {
  background: #61C01A;
  border-color: #61C01A;
}
.theme-dark .custom-form-wrap .custom-form .form-group input[type=checkbox]:checked::after {
  color: #FFF;
}
.theme-dark .custom-form-wrap .custom-form .form-group input[type=checkbox]:focus {
  box-shadow: 0 0 6px 2px rgba(97, 192, 26, 0.5);
}
.theme-dark .custom-form-wrap .custom-form .form-group input[type=radio] {
  border: 2px solid #201751;
  background: #FFF;
}
.theme-dark .custom-form-wrap .custom-form .form-group input[type=radio]:checked {
  border-color: #FFF;
  background-color: #61C01A;
}
.theme-dark .custom-form-wrap .custom-form .form-group input[type=radio]:focus {
  outline: none;
  box-shadow: 0 0 6px 2px rgba(97, 192, 26, 0.5);
}
.theme-dark .custom-form-wrap .custom-form .form-group .invalid-feedback {
  color: var(--bs-warning);
}
.theme-dark .custom-form-wrap .custom-form .btn.disabled, .theme-dark .custom-form-wrap .custom-form .btn:disabled {
  background-color: #201751;
  color: #FFF;
}
.theme-dark .sign-in-form,
.theme-dark .sign-up-form,
.theme-dark .forgot-password-form {
  background-color: #f9f9f9;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}
.theme-dark .sign-in-form .form-wrap .form-group input,
.theme-dark .sign-in-form .form-wrap .form-group textarea,
.theme-dark .sign-up-form .form-wrap .form-group input,
.theme-dark .sign-up-form .form-wrap .form-group textarea,
.theme-dark .forgot-password-form .form-wrap .form-group input,
.theme-dark .forgot-password-form .form-wrap .form-group textarea {
  width: 100%;
  background: #FFF;
  color: rgba(32, 23, 81, 0.85);
}
.theme-dark .sign-in-form .form-wrap .form-group input:focus,
.theme-dark .sign-in-form .form-wrap .form-group textarea:focus,
.theme-dark .sign-up-form .form-wrap .form-group input:focus,
.theme-dark .sign-up-form .form-wrap .form-group textarea:focus,
.theme-dark .forgot-password-form .form-wrap .form-group input:focus,
.theme-dark .forgot-password-form .form-wrap .form-group textarea:focus {
  border: 1px solid rgba(32, 23, 81, 0.2);
  box-shadow: 0px 0px 4px 1px rgba(32, 23, 81, 0.2);
  color: #201751;
}
.theme-dark .sign-in-form .form-wrap .checkbox a,
.theme-dark .sign-up-form .form-wrap .checkbox a,
.theme-dark .forgot-password-form .form-wrap .checkbox a {
  color: #201751;
}
.theme-dark .sign-in-form .form-wrap .checkbox a:hover,
.theme-dark .sign-up-form .form-wrap .checkbox a:hover,
.theme-dark .forgot-password-form .form-wrap .checkbox a:hover {
  color: #61C01A;
}
.theme-dark .sign-in-form .form-wrap .checkbox.style2 label:before,
.theme-dark .sign-up-form .form-wrap .checkbox.style2 label:before,
.theme-dark .forgot-password-form .form-wrap .checkbox.style2 label:before {
  border-color: #201751;
}
.theme-dark .sign-in-form .form-wrap a.link,
.theme-dark .sign-up-form .form-wrap a.link,
.theme-dark .forgot-password-form .form-wrap a.link {
  color: #61C01A;
}
.theme-dark .sign-in-form .form-wrap a.link:hover,
.theme-dark .sign-up-form .form-wrap a.link:hover,
.theme-dark .forgot-password-form .form-wrap a.link:hover {
  color: #61C01A;
}
.theme-dark .sign-in-form .form-wrap .checkbox input:checked + label:before,
.theme-dark .sign-up-form .form-wrap .checkbox input:checked + label:before,
.theme-dark .forgot-password-form .form-wrap .checkbox input:checked + label:before {
  border-color: #61C01A;
}
.theme-dark .sign-in-form .form-wrap .checkbox input:checked + label:after,
.theme-dark .sign-up-form .form-wrap .checkbox input:checked + label:after,
.theme-dark .forgot-password-form .form-wrap .checkbox input:checked + label:after {
  background: #61C01A;
}
.theme-dark .sign-in-form .form-wrap .btn,
.theme-dark .sign-up-form .form-wrap .btn,
.theme-dark .forgot-password-form .form-wrap .btn {
  background-color: #201751;
  color: #FFF;
}
.theme-dark .sign-in-form .form-wrap p a.link,
.theme-dark .sign-up-form .form-wrap p a.link,
.theme-dark .forgot-password-form .form-wrap p a.link {
  color: #61C01A;
}
.theme-dark .sign-in-form .form-wrap p a.link:hover,
.theme-dark .sign-up-form .form-wrap p a.link:hover,
.theme-dark .forgot-password-form .form-wrap p a.link:hover {
  color: #61C01A;
}
.theme-dark .our-partners .our-partners-title {
  color: #201751;
}

@media only screen and (max-width: 991.98px) {
  .switch-theme-mode {
    inset-inline-end: 20px;
    top: 90px; /*140px*/
  }
}
@media only screen and (max-width: 767.98px) {
  .switch-theme-mode {
    inset-inline-end: 16px;
    top: 80px;
  }
  .switch {
    width: 50px;
    height: 28px;
  }
  .slider::before {
    height: 32px;
    width: 32px;
  }
}/*# sourceMappingURL=dark-theme.css.map */