@charset "UTF-8";
/*-----------------------------------------------------------
    Theme Name: Shift
    Theme URI: https://shifttransfer.com/
    Description: Shift - Online Money Transfer Website Design
    Author: Shift
    Author URI: https://shifttransfer.com/
    Version: 1.0

    Project Overview:
    This SCSS structure powers the front-end design of shifttransfer.com, 
    a regulated online money transfer platform. The styling system is modular, 
    maintainable, and optimized for scalability, supporting both dark and 
    light themes, reusable components, and responsive layouts.
-------------------------------------------------------------*/
/*--------------------------------
===== Table of Contents =====

1.  Project Abstracts
    - Fonts
    - Variables
    - Functions
    - Mixins

2.  Animations
    - Animations
    - Keyframes    

3.  Base Styles
    - Base Reset & Normalization
    - Typography
    - Elements
    - Forms
    - Utilities

4.  Utility Helpers
    - Spacing
    - Backgrounds
    - Opacity
    - Position

5.  Components
    - About Wrap
    - Account Form
    - App Wrap
    - Back to Top Button
    - Blog Card
    - Breadcrumb
    - Button: Play Now
    - Buttons
    - Call To Action Wrap
    - Counter
    - Feature Card
    - Feature Item Wrap
    - Feature List
    - Feature Wrap
    - Goal Wrap
    - Hero Section
    - Sign In Form
    - Money Transfer Form
    - Pagination
    - Posts
    - Preloader
    - Pricing Table
    - Security Wrap
    - Section Title
    - Service Charge Wrap
    - Service Wrap
    - Shopping Wrap
    - Social Links
    - Testimonial

6.  Widgets
    - Sidebar
    - Search Box
    - Category
    - Project Info
    - Schedule
    - Contact Widget Form
    - Tag List
    - Popular Post Item

7.  Layout
    - Header
    - Footer
    - Content Area

8.  Page Specific Styles
    - Homepage
    - 404 Page
    - Projects Page
    - Team Page
    - FAQ Page
    - Contact Page

9.  Vendor Styles
    - Owl Carousel
----------------------------------*/
@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;
}

/* Icons with logical direction mapping: start/end/next */
/* Each icon uses a direction-specific variable defined in your LTR/RTL variable file */
/* Start Icons */
.flaticon-start-arrow:before {
  content: "\f10e";
}

.flaticon-start-arrow-1:before {
  content: "\f128";
}

.flaticon-start-quote:before {
  content: "\f108";
}

.flaticon-left-quote-1:before {
  content: "\f110";
}

/* End Icons */
.flaticon-end-quotation-sign:before {
  content: "\f107";
}

.flaticon-end-arrow:before {
  content: "\f10c";
}

.flaticon-end-arrow-1:before {
  content: "\f10f";
}

/* Next Icons */
.flaticon-next:before {
  content: "\f122";
}

.flaticon-next-1:before {
  content: "\f14c";
}

i[class^=flaticon-]:before, i[class*=" flaticon-"]:before {
  display: inline-block;
  transform: rotateY(0deg) scale(1);
}

.about-wrap {
  position: relative;
  z-index: 1;
}

.video-btn .play-video {
  margin-block-start: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.video-btn .play-video .play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #61C01A;
  box-shadow: 0 0px 4px 4px rgba(255, 255, 255, 0.5);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
  margin-inline-end: 0px;
}
.video-btn .play-video .play-btn i {
  margin: 0 auto;
  font-size: 24px;
  color: #FFF;
  position: relative;
  inset-inline-start: 3px;
}
.video-btn .play-video .video-title {
  margin-bottom: 0;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  margin-inline-start: 12px;
}
@media only screen and (min-width: 768px) {
  .video-btn .play-video .play-btn {
    width: 52px;
    height: 52px;
    margin-inline-end: 8px;
  }
}

.account-form {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  padding: 50px;
}
.account-form .form-group {
  margin-bottom: 24px;
}
.account-form .form-group label {
  display: block;
  margin: 0 0 10px;
  text-align: start;
}
.account-form .form-group input, .account-form .form-group textarea, .account-form .form-group select {
  width: 100%;
  height: 54px;
  border: none;
  background: #f9f9f9;
  padding: 15px 20px;
  resize: none;
}
.account-form .form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/down-arrow.png);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 98% 50%;
}

.back-to-top {
  font-size: 24px;
  width: 45px;
  height: 45px;
  line-height: 42px;
  text-align: center;
  display: none;
  position: fixed;
  bottom: 230px;
  inset-inline-end: 20px;
  z-index: 999;
  border-radius: 4px;
  background: #61C01A;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.back-to-top.open {
  bottom: 168px;
}
.back-to-top i {
  color: #FFF;
}

.blog-wrap .row > div, .news-wrap .row > div {
  margin-bottom: 24px;
}
.blog-wrap .btn, .news-wrap .btn {
  margin-top: 28px;
  width: fit-content;
  font-weight: 500;
}

.blog-filter-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 24px;
  color: #201751;
}
.blog-filter-title span {
  font-weight: 600;
  color: #201751;
}

.blog-card {
  min-height: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.blog-card .blog-img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1280/720;
}
.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.blog-card .blog-info {
  padding: 20px 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card .blog-info .blog-metainfo {
  margin-bottom: 12px;
}
.blog-card .blog-info .blog-metainfo li {
  display: inline-block;
  position: relative;
  padding-inline-start: 22px;
  margin-inline-end: 20px;
  font-size: 14px;
}
.blog-card .blog-info .blog-metainfo li:after {
  position: absolute;
  top: 5px;
  inset-inline-end: -12px;
  content: "";
  width: 1px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.8);
}
.blog-card .blog-info .blog-metainfo li:last-child {
  margin-inline-end: 0;
}
.blog-card .blog-info .blog-metainfo li:last-child:after {
  display: none;
}
.blog-card .blog-info .blog-metainfo li a {
  font-size: 14px;
  color: rgb(144.4, 210.9, 94.7);
}
.blog-card .blog-info .blog-metainfo li a:hover {
  color: #61C01A;
}
.blog-card .blog-info .blog-metainfo li i {
  position: absolute;
  top: 2px;
  inset-inline-start: 0;
  font-size: 16px;
  line-height: 0.8;
  color: #61C01A;
}
.blog-card .blog-info .blog-metainfo li i.ri-folder-3-line {
  top: 3px;
  font-size: 18px;
}
.blog-card .blog-info h3 {
  font-size: 22px;
  margin-bottom: 16px;
  display: flex;
  flex-grow: 1;
}
.blog-card .blog-info h3 a {
  color: #201751;
}
.blog-card .blog-info a {
  width: fit-content;
  color: #201751;
}
.blog-card .blog-info a.link {
  color: #201751;
}
.blog-card .blog-info a.link.style1 {
  color: #201751;
}
.blog-card .blog-info a.link.style2 {
  color: #FFF;
}
.blog-card .blog-info p {
  margin: 0 0 16px;
}
.blog-card .blog-info:hover h3 a {
  color: #61C01A;
}
.blog-card .blog-info:hover a {
  color: #61C01A;
}
.blog-card .blog-info:hover a.link {
  color: #61C01A;
}
.blog-card .blog-info:hover a.link.style1 {
  color: #61C01A;
}
.blog-card .blog-info:hover a.link.style2 {
  color: #61C01A;
}
.blog-card .blog-info:hover a.link:after {
  visibility: visible;
  opacity: 1;
  width: 100%;
}
.blog-card.style1 {
  background-color: #FFF;
  box-shadow: 0px 6px 50px rgba(32, 23, 81, 0.07);
  border-radius: 8px;
  overflow: hidden;
}
.blog-card.style1 .blog-info .blog-metainfo {
  margin-bottom: 16px;
}
.blog-card.style1 .blog-info .blog-metainfo li {
  color: #201751;
}
.blog-card.style1 .blog-info .blog-metainfo li:after {
  background-color: rgba(0, 0, 0, 0.3);
}
.blog-card.style1 .blog-info h3 {
  margin-bottom: 8px;
}
.blog-card.style1 .blog-info p {
  margin-bottom: 16px;
  padding-bottom: 16px;
  color: rgb(28.8, 20.7, 72.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.blog-card.style2 .blog-info {
  padding: 25px 0 0;
}
.blog-card.style2 .blog-info .blog-metainfo {
  margin-bottom: 18px;
}
.blog-card.style2 .blog-info .blog-metainfo li {
  color: rgba(255, 255, 255, 0.8);
}
.blog-card.style2 .blog-info .blog-metainfo li a {
  color: rgba(255, 255, 255, 0.8);
}
.blog-card.style2 .blog-info .blog-metainfo li a:hover {
  color: #61C01A;
}
.blog-card.style2 .blog-info h3 {
  margin-bottom: 0;
}
.blog-card.style2 .blog-info h3 a {
  color: #FFF;
}
.blog-card:hover {
  box-shadow: 0px 40px 51px -16px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.blog-card:hover .blog-img img {
  -webkit-transform: scale(1.08) rotate(3deg);
  -moz-transform: scale(1.08) rotate(3deg);
  transform: scale(1.08) rotate(3deg);
}
.blog-card:hover .blog-info h3 a {
  color: #61C01A;
}

.news-list .blog-card.style1 .blog-info h3 {
  flex-grow: 0;
}
.news-list .blog-card.style1 .blog-info p {
  flex-grow: 1;
}

.breadcrumb-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 35px 0;
  overflow: hidden;
  z-index: 1;
  margin-top: 130px;
  background: rgb(249, 249, 249);
  background: linear-gradient(180deg, rgba(32, 23, 81, 0.08) 65%, rgb(249, 249, 249) 100%);
}
@media only screen and (max-width: 1199.98px) {
  .breadcrumb-wrap {
    margin-top: 118px;
  }
}
@media only screen and (max-width: 767.98px) {
  .breadcrumb-wrap {
    margin-top: 60px;
  }
}
.breadcrumb-wrap .br-shape-one,
.breadcrumb-wrap .br-shape-two,
.breadcrumb-wrap .br-shape-three,
.breadcrumb-wrap .br-shape-four {
  position: absolute;
  z-index: -1;
}
.breadcrumb-wrap .br-shape-one {
  bottom: 0;
  inset-inline-start: 0;
  opacity: 0.3;
}
.breadcrumb-wrap .br-shape-two {
  top: 0;
  inset-inline-end: 0;
  opacity: 0.3;
}
.breadcrumb-wrap .br-shape-three {
  top: 100px;
  inset-inline-start: 35%;
}
.breadcrumb-wrap .br-shape-four {
  top: 100px;
  inset-inline-start: 50px;
}

.breadcrumb-title h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #201751;
  max-width: 500px;
  word-wrap: normal;
}
.breadcrumb-title .breadcrumb-menu li {
  display: inline-block;
  margin: 0 10px;
  position: relative;
  font-weight: 500;
}
.breadcrumb-title .breadcrumb-menu li:after {
  position: absolute;
  top: 1px;
  inset-inline-end: -15px;
  content: "\ea6e";
  font-family: remixicon !important;
  font-size: 16px;
  background-color: transparent;
  color: rgb(30.4, 21.85, 76.95);
}
.breadcrumb-title .breadcrumb-menu li:first-child {
  margin-inline-start: 0;
}
.breadcrumb-title .breadcrumb-menu li:first-child a {
  padding-inline-start: 0;
}
.breadcrumb-title .breadcrumb-menu li:last-child {
  margin-inline-end: 0;
  color: #61C01A;
}
.breadcrumb-title .breadcrumb-menu li:last-child:after {
  display: none;
}
.breadcrumb-title .breadcrumb-menu li a {
  font-size: 16px;
  line-height: 22px;
  display: inline-block;
  padding: 0 5px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  position: relative;
  color: rgb(30.4, 21.85, 76.95);
}
.breadcrumb-title .breadcrumb-menu li a:hover {
  color: #61C01A;
}
.breadcrumb-title .breadcrumb-menu li:last-child a:after {
  display: none;
}

.breadcrumb-img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(100%, 500px);
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb-img .br-shape-five,
.breadcrumb-img .br-shape-six {
  position: absolute;
  z-index: -1;
}
.breadcrumb-img .br-shape-five {
  inset-inline-start: 0;
  bottom: 100px;
}
.breadcrumb-img .br-shape-six {
  inset-inline-end: 0;
  bottom: 50px;
}
.breadcrumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  height: 85px;
  width: 85px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform-origin: center;
  transform-origin: center center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 #fff;
  -moz-box-shadow: 0 0 0 0 #fff;
  -ms-box-shadow: 0 0 0 0 #fff;
  -o-box-shadow: 0 0 0 0 #fff;
  box-shadow: 0 0 0 0 #fff;
  -webkit-animation: ripple 3s infinite;
  -moz-animation: ripple 3s infinite;
  -ms-animation: ripple 3s infinite;
  -o-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.play-now {
  position: relative;
  height: 85px;
  width: 85px;
  text-align: center;
  line-height: 92px;
  background-color: transparent;
  border: 3px solid #FFF;
  color: #fff;
  z-index: 1;
  font-size: 28px;
  padding-inline-start: 5px;
  display: block;
  -webkit-transform-origin: center;
  transform-origin: center center;
  border-radius: 50%;
  margin: 0 auto;
}
.play-now .ripple:before {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.play-now .ripple:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

@-webkit-keyframes ripple {
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.btn {
  display: inline-block;
  line-height: 26px;
  font-weight: 400;
  text-align: center;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  position: relative;
  z-index: 1;
  border: none;
  padding: 12px 32px 16px;
  border-radius: 28px; /*4px*/
  color: #FFF;
  overflow: hidden;
  white-space: nowrap;
}
.btn i {
  position: relative;
  top: 3px;
  font-size: 16px;
  margin-inline-start: 7px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn:before {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn:after {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn:hover {
  color: #FFF;
}
.btn:hover:after, .btn:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.btn.style1 {
  background-color: #201751;
}
.btn.style1:hover::after {
  background-color: #61C01A;
}
.btn.style2 {
  background-color: #2b0d61;
  color: #FFF;
}
.btn.style2:after, .btn.style2:before {
  background: #010647;
}
.btn.style2:hover {
  color: #FFF;
}
.btn.style3 {
  background-color: #282B58;
  color: #FFF;
}
.btn.style3:after, .btn.style3:before {
  background: #61C01A;
}
.btn.style3:hover {
  color: #FFF;
}
.btn.style4 {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
}
.btn.style4:after, .btn.style4:before {
  background: #61C01A;
}
.btn.style4:hover {
  color: #FFF;
}
.btn.style5 {
  background-color: transparent;
  border: 1px solid #61C01A;
  color: #61C01A;
}
.btn.style5:after, .btn.style5:before {
  background: #61C01A;
}
.btn.style5:hover {
  color: #FFF;
}
.btn.style6 {
  background-color: #FFF;
  color: #61C01A;
  border-radius: 32px; /*4px*/
}
.btn.style6:after, .btn.style6:before {
  background: #61C01A;
}
.btn.style6:hover {
  color: #FFF;
}
.btn.style7 {
  background-color: #FFF;
  border: 1px solid #61C01A;
  color: #201751;
  box-shadow: 0px 4px 2px 0px rgba(32, 23, 81, 0.15);
}
.btn.style7:after, .btn.style7:before {
  background: #201751;
}
.btn.style7:hover {
  color: #FFF;
}

.link {
  font-weight: 500;
  line-height: 26px;
  display: inline-block;
  position: relative;
  color: #61C01A;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.link:after {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  content: "";
  width: 0;
  height: 1px;
  background: #61C01A;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.link i {
  position: relative;
  top: 3px;
  margin-inline-start: 5px;
  font-size: 14px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.link:hover {
  color: #61C01A;
}
.link:hover:after {
  visibility: visible;
  opacity: 1;
  width: 100%;
}
.link:hover i {
  margin-inline-start: 10px;
}

.cta-wrap {
  min-height: 440px;
  height: auto;
  padding-block: 32px !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .cta-wrap {
    min-height: 600px;
    padding-block: 48px !important;
  }
}
.cta-wrap.vertical-middle {
  display: flex;
  align-items: center;
}
.cta-wrap .container {
  position: relative;
}
.cta-wrap .container .cta-title {
  padding-bottom: 12px;
}
.cta-wrap .container .cta-title span {
  color: #61C01A;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.cta-wrap .container .cta-title h1, .cta-wrap .container .cta-title h2, .cta-wrap .container .cta-title h3, .cta-wrap .container .cta-title h4, .cta-wrap .container .cta-title h5, .cta-wrap .container .cta-title h6 {
  color: #FFF;
  font-weight: 700;
}
.cta-wrap .container .cta-title h1::first-letter, .cta-wrap .container .cta-title h2::first-letter, .cta-wrap .container .cta-title h3::first-letter, .cta-wrap .container .cta-title h4::first-letter, .cta-wrap .container .cta-title h5::first-letter, .cta-wrap .container .cta-title h6::first-letter {
  text-transform: uppercase;
}
.cta-wrap .container .cta-content {
  margin-bottom: 32px;
}
.cta-wrap .container .cta-content p {
  color: #FFF !important;
  font-size: 20px;
  line-height: 1.4 !important;
}
@media only screen and (min-width: 768px) {
  .cta-wrap .container .cta-content p {
    font-size: 32px;
  }
}
.cta-wrap .container .cta-content p {
  margin-bottom: 12px;
}
.cta-wrap .container .cta-content .cta-link {
  font-weight: 500;
  line-height: 26px;
  display: inline-block;
  position: relative;
  color: #61C01A !important;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.cta-wrap .container .cta-content .cta-link i {
  color: #61C01A !important;
}
.cta-wrap .container .cta-content .cta-link:after {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  content: "";
  width: 0;
  height: 1px;
  background: #61C01A;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.cta-wrap .container .cta-content .cta-link i {
  position: relative;
  top: 1px;
  margin-inline-start: 5px;
  font-size: 14px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.cta-wrap .container .cta-content .cta-link:hover {
  color: #61C01A;
}
.cta-wrap .container .cta-content .cta-link:hover:after {
  visibility: visible;
  opacity: 1;
  width: 100%;
}
.cta-wrap .cta-btns {
  text-align: start;
}
.cta-wrap .cta-btns.center-btns {
  text-align: center;
}
.cta-wrap .cta-btns a.cta-btn {
  background-color: transparent;
  border: 1px solid #FFF;
  color: #FFF;
}
.cta-wrap .cta-btns a.cta-btn:after, .cta-wrap .cta-btns a.cta-btn:before {
  background: #61C01A;
}
.cta-wrap .cta-btns a.cta-btn:hover {
  color: #FFF;
}
.cta-wrap .cta-btns a.cta-btn:first-child {
  margin-inline-end: 16px;
}

.counter-wrap {
  position: relative;
  z-index: 1;
}
.counter-wrap:after {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 50%;
  content: "";
  background-color: #201751;
  z-index: -1;
}
.counter-wrap.counter-first {
  top: -40px;
  margin-block-end: -40px;
}
@media only screen and (min-width: 768px) {
  .counter-wrap.counter-first {
    top: -52px;
    margin-block-end: -52px;
  }
}
@media only screen and (min-width: 992px) {
  .counter-wrap.counter-first {
    top: -90px;
    margin-block-end: -90px;
  }
}
.counter-wrap.counter-first:after {
  display: none;
}

.counter-card-wrap {
  background: #61C01A;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.counter-card-wrap .counter-card {
  width: 25%;
  position: relative;
  padding: 45px 30px 50px;
}
.counter-card-wrap .counter-card:nth-child(4):after, .counter-card-wrap .counter-card:nth-child(4):before {
  display: none;
}
.counter-card-wrap .counter-card:nth-child(1):before, .counter-card-wrap .counter-card:nth-child(3):before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.01) 75%);
}
.counter-card-wrap .counter-card:nth-child(1):after, .counter-card-wrap .counter-card:nth-child(3):after {
  top: 40px;
  inset-inline-end: -4px;
}
.counter-card-wrap .counter-card:nth-child(2):before {
  background: linear-gradient(360deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.01) 75%);
}
.counter-card-wrap .counter-card:nth-child(2):after {
  bottom: 40px;
  inset-inline-end: -4px;
}
.counter-card-wrap .counter-card:before {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  content: "";
  width: 1px;
  height: 100%;
}
.counter-card-wrap .counter-card:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
.counter-card-wrap .counter-card .counter-text {
  text-align: center;
}
.counter-card-wrap .counter-card .counter-text .counter-num {
  display: flex;
  justify-content: center;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  color: #FFF;
  margin: 0 0 5px;
  direction: ltr;
}
.counter-card-wrap .counter-card .counter-text p {
  margin: 0;
  font-size: 18px;
  color: #FFF;
}

.hero-wrap:has(+ .counter-wrap.counter-first) {
  margin-block-end: 0px !important;
}

.hero-wrap {
  margin-top: 83px; /*132px*/
}
.hero-wrap .hero-content {
  position: relative;
}
.hero-wrap .hero-content span {
  display: block;
  margin-bottom: 8px;
  color: #61C01A;
}
.hero-wrap .hero-content h1 {
  font-size: 52px;
  margin-bottom: 20px;
  color: #201751;
}
.hero-wrap .hero-content h2 {
  font-size: 48px;
  margin-bottom: 16px;
  color: #201751;
}
.hero-wrap .hero-content p {
  margin-bottom: 36px;
  color: rgb(30.4, 21.85, 76.95);
}
.hero-wrap .hero-content .hero-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  row-gap: 12px;
  column-gap: 16px;
}
.hero-wrap .hero-content .hero-btn .play-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.hero-wrap .hero-content .hero-btn .play-video .play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #61C01A;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
  margin-inline-end: 8px;
}
.hero-wrap .hero-content .hero-btn .play-video .play-btn i {
  margin: 0 auto;
  font-size: 14px;
  line-height: 0.8;
  color: #FFF;
  position: relative;
  inset-inline-start: 1px;
}
.hero-wrap .hero-content .hero-btn .play-video span {
  margin-bottom: 0;
  color: #201751;
  font-weight: 500;
}
.hero-wrap.style1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-wrap.style1 .hero-slide-item {
  padding: 100px 0 0;
}
.hero-wrap.style1 .hero-shape-one {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  z-index: -1;
}
.hero-wrap.style1 .hero-shape-two {
  position: absolute;
  bottom: 50px;
  inset-inline-start: 30%;
  z-index: -1;
  max-width: 100px;
}
.hero-wrap.style1 .hero-shape-three {
  position: absolute;
  top: 100px;
  inset-inline-start: 40%;
  z-index: -1;
  max-width: 100px;
}
.hero-wrap.style1 .hero-shape-four {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  height: 100%;
  z-index: -1;
}
.hero-wrap.style1 .hero-img-wrap {
  position: relative;
  z-index: 1;
}
.hero-wrap.style1 .hero-img-wrap .hero-img {
  display: block;
  margin-inline-end: auto;
}
.hero-wrap.style1 .hero-content {
  padding-bottom: 80px;
  position: relative;
}
.hero-wrap.style1 .hero-content h1 {
  display: inline-block;
  font-size: 52px;
}
.hero-wrap.style1 .hero-content .hero-btn .btn:first-child {
  margin-inline-end: 15px;
}
.hero-wrap.style2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 120px 0 80px;
  margin-top: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 64% 60px;
  margin-block-end: 64px;
}
@media only screen and (min-width: 768px) {
  .hero-wrap.style2 {
    padding: 140px 0 100px; /*200px 0 72px*/
    background-position: 70% 72px; /*70% 120px*/
    margin-block-end: 80px;
  }
}
@media only screen and (min-width: 992px) {
  .hero-wrap.style2 {
    padding: 150px 0 100px; /*200px 0 72px*/
    background-position: 70% 72px; /*70% 120px*/
    min-height: 800px;
    height: auto;
  }
}
.hero-wrap.style2 .hero-content {
  margin-block-start: 16px;
  margin-inline-start: 0px;
}
@media only screen and (min-width: 992px) {
  .hero-wrap.style2 .hero-content {
    margin-block-start: 0px;
    margin-inline-start: 24px;
  }
}
.hero-wrap.style2 .hero-content span {
  color: #201751;
  text-shadow: 1px 1px 2px #FFF;
}
@media only screen and (min-width: 992px) {
  .hero-wrap.style2 .hero-content span {
    color: #61C01A;
  }
}
.hero-wrap.style2 .hero-content h1, .hero-wrap.style2 .hero-content h2 {
  color: #201751;
  text-shadow: 1px 1px 2px #FFF;
}
.hero-wrap.style2 .hero-content p {
  color: #FFF;
  text-shadow: 1px 1px 2px #201751;
}
.hero-wrap.style2 .hero-content .hero-btn .play-video span.play-btn-text {
  color: #FFF;
  text-shadow: 0 0 8px #201751;
}
.hero-wrap.style3 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 81px; /*130px*/
  background: rgb(249, 249, 249);
  background: linear-gradient(180deg, rgba(32, 23, 81, 0.08) 65%, rgb(249, 249, 249) 100%);
}
.hero-wrap.style3 .hero-shape-one {
  position: absolute;
  top: 0;
  inset-inline-start: 50%;
  z-index: -1;
}
.hero-wrap.style3 .hero-shape-two {
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.hero-wrap.style3 .hero-shape-three {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  z-index: -1;
}
.hero-wrap.style3 .hero-shape-four {
  position: absolute;
  bottom: 100px;
  inset-inline-start: 50%;
  z-index: -1;
}
.hero-wrap.style3 .hero-slide-item {
  padding: 80px 0px;
}
.hero-wrap.style3 .hero-content h1 {
  font-size: 48px;
  color: #201751;
}
.hero-wrap.style3 .hero-content p {
  margin-bottom: 35px;
  color: rgb(30.4, 21.85, 76.95);
}
.hero-wrap.style3 .hero-img-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-wrap.style3 .hero-img-wrap .hero-shape-five,
.hero-wrap.style3 .hero-img-wrap .hero-shape-six,
.hero-wrap.style3 .hero-img-wrap .hero-shape-eight,
.hero-wrap.style3 .hero-img-wrap .hero-shape-seven {
  position: absolute;
  z-index: -1;
}
.hero-wrap.style3 .hero-img-wrap .hero-shape-five {
  top: 50px;
  inset-inline-end: 120px;
  max-width: 120px;
}
.hero-wrap.style3 .hero-img-wrap .hero-shape-six {
  bottom: 30px;
  inset-inline-start: 150px;
  max-width: 120px;
}
.hero-wrap.style3 .hero-img-wrap .hero-img {
  position: relative;
  border-radius: 50px;
}
@media only screen and (max-width: 1199.98px) {
  .hero-wrap.style3 {
    margin-top: 69px; /*118px*/
  }
}
@media only screen and (max-width: 767.98px) {
  .hero-wrap.style3 {
    margin-top: 60px; /*60px*/
  }
}
.hero-wrap.style4 {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 52px 0 64px;
  overflow: hidden;
  z-index: 1;
  margin-top: 60px; /*60px*/
  background: rgb(249, 249, 249);
  background: linear-gradient(180deg, rgba(32, 23, 81, 0.08) 65%, rgb(249, 249, 249) 100%);
}
@media only screen and (min-width: 768px) {
  .hero-wrap.style4 {
    margin-top: 69px; /*118px*/
  }
}
@media only screen and (min-width: 1200px) {
  .hero-wrap.style4 {
    margin-top: 85px; /*134px*/
  }
}
.hero-wrap.style4 .hero-content {
  position: relative;
}
.hero-wrap.style4 .hero-content span {
  font-size: 20px;
  text-transform: capitalize;
}
.hero-wrap.style4 .hero-content h1 {
  font-size: 24px;
  line-height: 1.2 !important;
  margin-bottom: 4px !important;
}
@media only screen and (min-width: 768px) {
  .hero-wrap.style4 .hero-content h1 {
    font-size: 32px;
    margin-bottom: 8px !important;
  }
}
@media only screen and (min-width: 992px) {
  .hero-wrap.style4 .hero-content h1 {
    font-size: 52px;
  }
}
.hero-wrap.style4 .hero-img-wrap {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(100%, 500px);
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-top: 52px; /*52px*/
}
@media only screen and (min-width: 768px) {
  .hero-wrap.style4 .hero-img-wrap {
    margin-top: 0px;
  }
}
.hero-wrap.style4 .hero-img-wrap img.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .hero-wrap.style4 {
    padding: 52px 0 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .hero-wrap.style4 {
    padding: 48px 0px 80px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero-wrap.style4 {
    padding: 36px 0px 80px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-wrap.style4 .container {
    max-width: 1520px;
    margin: 0 auto;
  }
}

.hero-slider-one.owl-carousel .owl-dots {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
.hero-slider-one.owl-carousel .owl-dots .owl-dot {
  display: block;
  margin: 45px 0;
  bottom: 0;
}
.hero-slider-one.owl-carousel .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(97, 192, 26, 0.3);
  border-radius: 50%;
  background: transparent;
  display: inline-block;
}
.hero-slider-one.owl-carousel .owl-dots .owl-dot span:before {
  position: absolute;
  top: 32px;
  inset-inline-start: 50%;
  content: "";
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #61C01A;
  width: 1px;
  height: 26px;
}
.hero-slider-one.owl-carousel .owl-dots .owl-dot span:after {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 50%;
  inset-inline-start: 50%;
  content: "";
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(97, 192, 26, 0.3);
}
.hero-slider-one.owl-carousel .owl-dots .owl-dot.active span {
  width: 20px;
  height: 20px;
  background: transparent;
  border-color: #61C01A;
}
.hero-slider-one.owl-carousel .owl-dots .owl-dot.active span:after {
  background: #61C01A;
}
.hero-slider-one.owl-carousel .owl-dots .owl-dot:last-child span:before {
  display: none;
}

.hero-slider-one.owl-carousel .owl-item.active .hero-slide-item .hero-content span {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.hero-slider-one.owl-carousel .owl-item.active .hero-slide-item .hero-content h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.hero-slider-one.owl-carousel .owl-item.active .hero-slide-item .hero-content p {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.hero-slider-one.owl-carousel .owl-item.active .hero-slide-item .hero-content .hero-btn,
.hero-slider-one.owl-carousel .owl-item.active .hero-slide-item .hero-content .btn {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.sign-in-form, .sign-up-form, .forgot-password-form {
  padding-block: 24px;
  padding-inline: 16px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}
.sign-in-form .form-wrap, .sign-up-form .form-wrap, .forgot-password-form .form-wrap {
  margin-bottom: -8px;
}
.sign-in-form .form-wrap .form-group, .sign-up-form .form-wrap .form-group, .forgot-password-form .form-wrap .form-group {
  margin: 0 0 12px;
}
.sign-in-form .form-wrap .form-group label, .sign-up-form .form-wrap .form-group label, .forgot-password-form .form-wrap .form-group label {
  font-size: 16px;
  color: #201751;
  font-size: 14px;
  margin: 0 0 4px;
}
.sign-in-form .form-wrap .form-group input,
.sign-in-form .form-wrap .form-group textarea, .sign-up-form .form-wrap .form-group input,
.sign-up-form .form-wrap .form-group textarea, .forgot-password-form .form-wrap .form-group input,
.forgot-password-form .form-wrap .form-group textarea {
  width: 100%;
  background: #FFF;
  border: none;
  padding-block: 4px;
  padding-inline: 16px 12px;
  border-radius: 4px;
  color: rgba(32, 23, 81, 0.85);
}
.sign-in-form .form-wrap .form-group input:focus,
.sign-in-form .form-wrap .form-group textarea:focus, .sign-up-form .form-wrap .form-group input:focus,
.sign-up-form .form-wrap .form-group textarea:focus, .forgot-password-form .form-wrap .form-group input:focus,
.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;
}
.sign-in-form .form-wrap .form-group input, .sign-up-form .form-wrap .form-group input, .forgot-password-form .form-wrap .form-group input {
  height: 52px;
}
.sign-in-form .form-wrap .form-group textarea, .sign-up-form .form-wrap .form-group textarea, .forgot-password-form .form-wrap .form-group textarea {
  height: 144px;
  resize: none;
}
.sign-in-form .form-wrap a.link, .sign-up-form .form-wrap a.link, .forgot-password-form .form-wrap a.link {
  color: #61C01A;
}
.sign-in-form .form-wrap a.link:hover, .sign-up-form .form-wrap a.link:hover, .forgot-password-form .form-wrap a.link:hover {
  color: #61C01A;
}
.sign-in-form .form-wrap .checkbox, .sign-up-form .form-wrap .checkbox, .forgot-password-form .form-wrap .checkbox {
  display: block;
}
.sign-in-form .form-wrap .checkbox input, .sign-up-form .form-wrap .checkbox input, .forgot-password-form .form-wrap .checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.sign-in-form .form-wrap .checkbox label, .sign-up-form .form-wrap .checkbox label, .forgot-password-form .form-wrap .checkbox label {
  position: relative;
  cursor: pointer;
  padding-inline-start: 20px;
  color: #201751;
  font-size: 14px;
}
.sign-in-form .form-wrap .checkbox label:before, .sign-up-form .form-wrap .checkbox label:before, .forgot-password-form .form-wrap .checkbox label:before {
  content: "";
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid #201751;
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  border-radius: 50%;
  vertical-align: middle;
  cursor: pointer;
  margin-inline-end: 4px;
  position: absolute;
  inset-inline-start: 0;
  top: 3px;
}
.sign-in-form .form-wrap .checkbox a, .sign-up-form .form-wrap .checkbox a, .forgot-password-form .form-wrap .checkbox a {
  color: #201751;
}
.sign-in-form .form-wrap .checkbox a:hover, .sign-up-form .form-wrap .checkbox a:hover, .forgot-password-form .form-wrap .checkbox a:hover {
  color: #61C01A;
}
.sign-in-form .form-wrap .checkbox.style2 label:before, .sign-up-form .form-wrap .checkbox.style2 label:before, .forgot-password-form .form-wrap .checkbox.style2 label:before {
  border-radius: 50%;
  border-color: #201751;
}
.sign-in-form .form-wrap .checkbox input:checked + label:before, .sign-up-form .form-wrap .checkbox input:checked + label:before, .forgot-password-form .form-wrap .checkbox input:checked + label:before {
  border-color: #61C01A;
}
.sign-in-form .form-wrap .checkbox input:checked + label:after, .sign-up-form .form-wrap .checkbox input:checked + label:after, .forgot-password-form .form-wrap .checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  inset-inline-start: 3px;
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  background: #61C01A;
}
.sign-in-form .form-wrap .btn, .sign-up-form .form-wrap .btn, .forgot-password-form .form-wrap .btn {
  background-color: #201751;
  color: #FFF;
}
.sign-in-form .form-wrap p, .sign-up-form .form-wrap p, .forgot-password-form .form-wrap p {
  color: #201751;
}
.sign-in-form .form-wrap p a.link, .sign-up-form .form-wrap p a.link, .forgot-password-form .form-wrap p a.link {
  color: #61C01A;
}
.sign-in-form .form-wrap p a.link:hover, .sign-up-form .form-wrap p a.link:hover, .forgot-password-form .form-wrap p a.link:hover {
  color: #61C01A;
}

@media only screen and (min-width: 576px) {
  .sign-in-form, .sign-up-form, .forgot-password-form {
    padding: 32px;
    margin-bottom: 24px;
  }
  .sign-in-form .form-group, .sign-up-form .form-group, .forgot-password-form .form-group {
    margin: 0 0 20px;
  }
  .sign-in-form .form-group label, .sign-up-form .form-group label, .forgot-password-form .form-group label {
    margin: 0 0 8px;
    display: block;
  }
  .sign-in-form .form-group input, .sign-up-form .form-group input, .forgot-password-form .form-group input {
    padding-block: 8px;
    padding-inline: 20px 16px;
    height: 60px;
  }
  .sign-in-form .form-group textarea, .sign-up-form .form-group textarea, .forgot-password-form .form-group textarea {
    padding-block: 8px;
    padding-inline: 20px 16px;
    height: 164px;
  }
  .sign-in-form .form-group .checkbox label, .sign-up-form .form-group .checkbox label, .forgot-password-form .form-group .checkbox label {
    font-size: 16px;
  }
}
.money-transfer-form {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 30px rgba(32, 23, 81, 0.1);
  border: 0px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 2px;
}
.money-transfer-form .money-transfer-content {
  background: #201751;
  border: 1px solid rgba(32, 23, 81, 0.45);
  position: relative;
  z-index: 1;
  padding: 24px 12px;
}
@media only screen and (min-width: 768px) {
  .money-transfer-form .money-transfer-content {
    padding: 24px 28px;
  }
}
.money-transfer-form .money-transfer-content {
  border-radius: 8px;
}
.money-transfer-form .money-transfer-content .money-transfer-overlay {
  background-color: rgba(32, 23, 81, 0.15);
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.money-transfer-form .money-transfer-content .money-transfer-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.money-transfer-form .money-transfer-content .money-transfer-overlay .loading-img {
  width: 80px;
  height: auto;
}
.money-transfer-form .money-transfer-content .form-group {
  position: relative;
  margin-top: 20px;
}
.money-transfer-form .money-transfer-content .form-group label {
  display: block;
  margin: 0 0 16px;
  line-height: 1;
  color: #FFF;
  text-transform: capitalize;
  font-weight: 500;
}
.money-transfer-form .money-transfer-content .form-group input[type=text] {
  width: 100%;
  height: 52px;
  background-color: #FFF;
  border-radius: 4px;
  border: none;
  padding: 16px 20px;
  color: #201751;
  font-weight: 600;
  font-size: 16px;
}
.money-transfer-form .money-transfer-content .form-group input[type=text]::placeholder {
  color: #201751;
  opacity: 1;
}
.money-transfer-form .money-transfer-content .form-group select {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  background-color: #FFF;
  color: #201751;
  border-radius: 4px;
  width: 80px;
  height: 52px;
  padding: 12px;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../img/down-arrow.png);
  background-size: 16px;
  background-position: 85% 52%;
}
.money-transfer-form .money-transfer-content .form-group select.sending-via {
  position: relative;
  width: 100%;
  background-position: 98% 52%;
}
.money-transfer-form .money-transfer-content .form-group .sending-via-hint {
  font-size: 12px !important;
  color: #FFF;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details {
  background-color: #FFF;
  border-radius: 8px;
  padding: 16px 12px;
}
@media only screen and (min-width: 768px) {
  .money-transfer-form .money-transfer-content .form-group.transfer-details {
    padding: 16px 20px;
  }
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 16px;
  font-weight: 500;
  color: #201751;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods {
  border-top: 1px solid #cccccc;
  margin-top: 12px;
  padding-top: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .info-title {
  margin-bottom: 4px;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion {
  width: 100%;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item {
  border: 0px none;
  border-radius: 0px;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item .accordion-header {
  line-height: 1.2;
  font-weight: 600;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item .accordion-header .accordion-button {
  outline: 0;
  box-shadow: none;
  padding: 4px 8px;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item .accordion-header .accordion-button .form-check {
  padding-inline: 0px;
  margin-bottom: 0px;
  margin-inline-start: 24px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item .accordion-header .accordion-button .form-check .form-check-input {
  border-color: #201751;
  position: relative;
  top: -2px;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item .accordion-header .accordion-button .form-check .form-check-input:checked {
  background-color: #201751;
  border-color: #201751;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item .accordion-header .accordion-button .form-check .form-check-label {
  color: #201751;
  font-weight: 600;
  margin-bottom: 0px;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item .accordion-header .accordion-button .form-check .form-check-label .ri-information-line {
  color: #61C01A;
  margin-inline-start: 8px;
  cursor: pointer;
  font-size: 20px;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item .accordion-collapse.show {
  display: flex;
  padding-bottom: 12px;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item .accordion-collapse .accordion-body {
  width: 100%;
  padding: 4px 8px;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item .accordion-collapse .accordion-body .payment-method-our-fee {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-inline-start: 24px;
  margin-block: 12px 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #cccccc;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item .accordion-collapse .accordion-body .payment-method-our-fee span {
  text-align: start;
  font-weight: 700;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item .accordion-collapse .accordion-body .payment-method-our-fee span:last-child {
  text-align: end;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item .accordion-collapse .accordion-body .payment-method-total-fee {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-inline-start: 24px;
  margin-block: 12px 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #cccccc;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item .accordion-collapse .accordion-body .payment-method-total-fee span {
  text-align: start;
  font-weight: 700;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.payment-methods .payment-methods-accordion .accordion-item .accordion-collapse .accordion-body .payment-method-total-fee span:last-child {
  text-align: end;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.our-fee {
  font-weight: 700;
  border-top: 1px solid #cccccc;
  margin-top: 12px;
  padding-top: 12px;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.total-fee {
  font-weight: 700;
  border-top: 1px solid #cccccc;
  margin-top: 12px;
  padding-top: 12px;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .form-check-wrap {
  margin-top: 16px;
  margin-bottom: 8px;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .form-check-wrap .form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-inline-start: 0px;
  margin-bottom: 4px;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .form-check-wrap .form-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #201751;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .form-check-wrap .form-check .check-label {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  position: relative;
  top: 1px;
  color: #201751;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .form-check-wrap .form-check .check-label a {
  color: #201751;
  font-weight: 600;
  text-decoration: underline;
  transition: 0.2s;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .form-check-wrap .form-check .check-label a:hover {
  color: rgb(16.3076923077, 11.7211538462, 41.2788461538);
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .form-btn button {
  border: none;
  background-color: #201751;
  color: #FFF;
}
.money-transfer-form .money-transfer-content .form-group.transfer-details .form-btn button:hover {
  color: #FFF;
}
.money-transfer-form .money-transfer-content .form-group.transfer-error {
  background-color: #FFF;
  border: 1px solid #FFF;
  border-radius: 8px;
  padding: 16px 12px;
}
@media only screen and (min-width: 768px) {
  .money-transfer-form .money-transfer-content .form-group.transfer-error {
    padding: 16px 20px;
  }
}
.money-transfer-form .money-transfer-content .form-group.transfer-error .error-details {
  padding: 4px 0;
  font-size: 16px;
  font-weight: 700;
  text-align: start;
  color: var(--bs-red);
}
.money-transfer-form .money-transfer-content .form-group.transfer-error .error-details span {
  font-weight: 500;
}
.money-transfer-form .money-transfer-content .form-group:last-of-type {
  margin-bottom: 0px;
}
.money-transfer-form.pricing-page .money-transfer-content {
  padding: 20px 8px;
}
.money-transfer-form .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #201751;
}
.money-transfer-form .select2-container .select2-selection--single .select2-selection__rendered {
  padding-inline: 8px 20px !important;
}
.money-transfer-form .select2-container--default .select2-selection--single .select2-selection__clear {
  order: 2;
  margin-inline-end: 28px;
  padding-top: 0px;
}
.money-transfer-form .select2-container--default .select2-selection--single .select2-selection__clear span {
  font-size: 16px;
  position: relative;
  top: 1px;
}

@media only screen and (max-width: 767.98px) {
  .money-transfer-form,
  .money-transfer-form * {
    font-size: 14px !important;
  }
  /* Adjust margin-bottom
  .money-transfer-form .money-transfer-content .form-group{
    margin-bottom: 16px !important;
  }*/
  .money-transfer-form .money-transfer-content .form-group label {
    margin-bottom: 8px !important;
  }
  .money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.our-fee,
  .money-transfer-form .money-transfer-content .form-group.transfer-details .detail-row.total,
  .money-transfer-form .money-transfer-content .form-group.transfer-details .form-check-wrap .form-check .check-label a,
  .money-transfer-form .money-transfer-content .form-group.transfer-error .error-details {
    font-weight: 500 !important;
  }
  .money-transfer-form .money-transfer-content input[type=text],
  .money-transfer-form .money-transfer-content select {
    height: 44px !important;
    font-size: 14px !important;
  }
  .money-transfer-form .select2-container--default .select2-selection--single {
    height: 44px !important;
    font-size: 14px !important;
  }
  .money-transfer-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important;
  }
  .money-transfer-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    font-size: 18px !important;
    top: 25%;
  }
  .money-transfer-form .select2-container--default .select2-selection__rendered {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
  .money-transfer-form .select2-results__option {
    font-size: 14px !important;
    color: #201751;
  }
  .money-transfer-form .select2-container--default .select2-search--dropdown .select2-search__field {
    height: 36px !important;
    font-size: 14px !important;
  }
}
.transaction-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(32, 23, 81, 0.6);
  z-index: 19999;
}
.transaction-overlay .loading-container {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
}
.transaction-overlay .loading-container .loading-img {
  width: 100px;
  height: 100px;
}
.transaction-overlay .result-container {
  display: none;
  position: absolute;
  top: 25%;
  inset-inline-start: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: center center;
  background: #FFF;
  border-radius: 12px;
  padding: 12px;
  width: 90%;
  max-width: 640px;
}
@media only screen and (min-width: 768px) {
  .transaction-overlay .result-container {
    width: 60%;
  }
}
.transaction-overlay .result-container {
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: all 0.4s ease;
}
.transaction-overlay .result-container.show {
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
}
.transaction-overlay .result-container .close-btn {
  position: absolute;
  top: -6px;
  inset-inline-end: 0;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  transition: color 0.2s;
}
.transaction-overlay .result-container .close-btn:hover {
  color: var(--bs-red);
}
.transaction-overlay .result-container .result-content {
  margin-top: 12px;
}
@media only screen and (min-width: 768px) {
  .transaction-overlay .result-container .result-content {
    font-size: 20px;
  }
}
.transaction-overlay .result-container .result-content .title {
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 28px;
}
.transaction-overlay .result-container .result-content p {
  font-size: 16px;
}
.transaction-overlay .result-container .result-content .reference {
  color: #201751;
  font-weight: 500;
  font-size: 16px;
  text-align: start;
}
@media only screen and (min-width: 576px) {
  .transaction-overlay .result-container .result-content .reference {
    text-align: end;
  }
}
@media only screen and (min-width: 768px) {
  .transaction-overlay .result-container .result-content .reference {
    font-size: 20px;
  }
}
.transaction-overlay .result-container .result-content .reference span {
  font-weight: 700;
  display: inline-block;
  width: auto;
  text-align: start;
}
@media only screen and (min-width: 576px) {
  .transaction-overlay .result-container .result-content .reference span {
    width: 75%;
  }
}
.transaction-overlay .result-container .result-content .status {
  color: #201751;
  font-weight: 500;
  font-size: 16px;
  text-align: start;
}
@media only screen and (min-width: 576px) {
  .transaction-overlay .result-container .result-content .status {
    text-align: end;
  }
}
@media only screen and (min-width: 768px) {
  .transaction-overlay .result-container .result-content .status {
    font-size: 20px;
  }
}
.transaction-overlay .result-container .result-content .status span {
  font-weight: 700;
  display: inline-block;
  width: auto;
  text-align: start;
}
@media only screen and (min-width: 576px) {
  .transaction-overlay .result-container .result-content .status span {
    width: 75%;
  }
}
.transaction-overlay .result-container .result-content .status.danger {
  color: var(--bs-red);
}
.transaction-overlay .result-container .result-content .more-details {
  margin-block: 16px 8px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}
.transaction-overlay .result-container .result-content .more-details i {
  font-size: 28px;
  position: relative;
  top: 4px;
  color: #61C01A;
}
.transaction-overlay .result-container .result-content .more-details span {
  font-weight: 600;
}
.transaction-overlay .result-container .result-content .more-details ul {
  list-style: none;
  padding-inline-start: 4px;
}
.transaction-overlay .result-container .result-content .more-details ul li {
  display: flex;
  align-items: center;
}
.transaction-overlay .result-container .result-content .more-details 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;
}

.pickup-locations .pickup-locations-form {
  background: #201751;
  box-shadow: 0 4px 30px rgba(32, 23, 81, 0.1);
  border: 0px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 12px;
}
.pickup-locations .pickup-locations-form h3.form-title {
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 28px;
}
@media only screen and (min-width: 768px) {
  .pickup-locations .pickup-locations-form h3.form-title {
    font-size: 36px;
  }
}
.pickup-locations .pickup-locations-form .pickup-locations-overlay {
  background-color: rgba(32, 23, 81, 0.15);
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pickup-locations .pickup-locations-form .pickup-locations-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.pickup-locations .pickup-locations-form .pickup-locations-overlay .loading-img {
  width: 80px;
  height: auto;
}
.pickup-locations .pickup-locations-form .form-group {
  position: relative;
  min-height: 106px;
  height: auto;
}
.pickup-locations .pickup-locations-form .form-group label {
  display: block;
  margin: 0 0 16px;
  line-height: 1;
  color: #FFF;
  text-transform: capitalize;
  font-weight: 500;
}
.pickup-locations .pickup-locations-form .form-group select {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  background-color: #FFF;
  color: #201751;
  border-radius: 4px;
  width: 80px;
  height: 52px;
  padding: 12px;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../img/down-arrow.png);
  background-size: 16px;
  background-position: 85% 52%;
}
.pickup-locations .pickup-locations-form .form-group.form-btn {
  display: flex;
  align-items: end;
  padding-bottom: 22px;
}
.pickup-locations .pickup-locations-form .form-group.form-btn button {
  border: none;
  background-color: #61C01A;
  color: #FFF;
  height: 52px !important;
}
.pickup-locations .pickup-locations-form .form-group.form-btn button:hover {
  color: #FFF;
}
.pickup-locations .pickup-locations-form .form-group.form-erros {
  padding-top: 8px;
  min-height: initial;
}
.pickup-locations .pickup-locations-form .form-group .pickup-locations-error {
  background-color: #FFF;
  border: 1px solid #201751;
  border-radius: 8px;
  padding: 16px 20px;
}
.pickup-locations .pickup-locations-form .form-group .pickup-locations-error .error-details {
  padding: 4px 0;
  font-size: 16px;
  font-weight: 700;
  text-align: start;
  color: var(--bs-red);
}
.pickup-locations .pickup-locations-form .form-group .pickup-locations-error .error-details span {
  font-weight: 500;
}
.pickup-locations .pickup-locations-form .form-group .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #201751;
}
.pickup-locations .pickup-locations-form .form-group .select2-container .select2-selection--single .select2-selection__rendered {
  padding-inline: 8px 20px !important;
}
.pickup-locations .pickup-locations-form .form-group .select2-container--default .select2-selection--single .select2-selection__clear {
  order: 2;
  margin-inline-end: 28px;
  padding-top: 0px;
}
.pickup-locations .pickup-locations-form .form-group .select2-container--default .select2-selection--single .select2-selection__clear span {
  font-size: 16px;
  position: relative;
  top: 1px;
}
.pickup-locations .pickup-locations-form .form-group div.is-invalid {
  display: none;
  width: 100%;
  margin-top: 4px;
  font-size: 12px;
  color: var(--bs-warning);
}
.pickup-locations .modal-content {
  background-color: #f9f9f9;
}
.pickup-locations .locations-wrap {
  position: relative;
  row-gap: 12px;
  height: auto;
  max-height: 520px;
}
@media only screen and (min-width: 992px) {
  .pickup-locations .locations-wrap {
    max-height: 720px;
  }
}
.pickup-locations .locations-wrap {
  overflow-y: auto;
}
.pickup-locations .locations-wrap .location-wrap {
  display: flex;
  height: auto;
  width: auto;
  min-width: 100%;
}
.pickup-locations .locations-wrap .location-wrap .location-card {
  border: none;
  border-radius: 8px;
  box-shadow: inset 0px 2px 8px 4px rgba(255, 255, 255, 0.44), 0px 16px 8px -12px rgba(0, 0, 0, 0.44);
  padding: 12px;
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  min-height: 100%;
  height: auto;
  width: auto;
  min-width: 100%;
  margin-block-end: 16px;
}
.pickup-locations .locations-wrap .location-wrap .location-card .location-header {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  word-wrap: break-word;
  min-width: 100%;
  width: auto;
  line-height: 1.4;
}
.pickup-locations .locations-wrap .location-wrap .location-card .location-header .location-icon {
  display: inline-flex;
  margin-inline-end: 8px;
  color: #61C01A;
  justify-content: center;
  align-items: start;
  height: 100%;
  padding-top: 2px;
}
.pickup-locations .locations-wrap .location-wrap .location-card .location-header .location-icon i {
  font-size: 20px;
  line-height: 20px;
}
.pickup-locations .locations-wrap .location-wrap .location-card .location-header .location-title {
  word-wrap: break-word;
  line-height: 1.4;
}
.pickup-locations .locations-wrap .location-wrap .location-card .location-header .location-title h5 {
  text-transform: capitalize;
  margin-bottom: 0px;
  font-size: 16px;
  max-width: 100%;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  max-height: 2.8em;
  min-height: 2.8em;
  color: #201751;
}
.pickup-locations .locations-wrap .location-wrap .location-card .location-info {
  padding-top: 8px;
  min-height: 80px;
}
.pickup-locations .locations-wrap .location-wrap .location-card .location-info .info-details {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 4px;
  color: #201751;
}
.pickup-locations .locations-wrap .location-wrap .location-card .location-info .info-details span {
  font-weight: 600;
  display: block;
}
.pickup-locations .locations-wrap .location-wrap .location-card .location-info .info-details .telephone-link {
  color: #61C01A;
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}
.pickup-locations .locations-wrap .location-wrap .location-card .location-map .get-direction-link {
  font-size: 14px;
  color: #61C01A;
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}

.send-money-from-locations .send-money-from-locations-form {
  background: #201751;
  box-shadow: 0 4px 30px rgba(32, 23, 81, 0.1);
  border: 0px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 12px;
  margin-block-start: 8px;
}
.send-money-from-locations .send-money-from-locations-form h3.form-title {
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 28px;
}
@media only screen and (min-width: 768px) {
  .send-money-from-locations .send-money-from-locations-form h3.form-title {
    font-size: 36px;
  }
}
.send-money-from-locations .send-money-from-locations-form .send-money-from-locations-overlay {
  background-color: rgba(32, 23, 81, 0.15);
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.send-money-from-locations .send-money-from-locations-form .send-money-from-locations-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.send-money-from-locations .send-money-from-locations-form .send-money-from-locations-overlay .loading-img {
  width: 80px;
  height: auto;
}
.send-money-from-locations .send-money-from-locations-form .form-group {
  position: relative;
  min-height: 106px;
  height: auto;
}
.send-money-from-locations .send-money-from-locations-form .form-group label {
  display: block;
  margin: 0 0 16px;
  line-height: 1;
  color: #FFF;
  text-transform: capitalize;
  font-weight: 500;
}
.send-money-from-locations .send-money-from-locations-form .form-group select {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  background-color: #FFF;
  color: #201751;
  border-radius: 4px;
  width: 80px;
  height: 52px;
  padding: 12px;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../img/down-arrow.png);
  background-size: 16px;
  background-position: 85% 52%;
}
.send-money-from-locations .send-money-from-locations-form .form-group.form-btn {
  display: flex;
  align-items: end;
  padding-bottom: 22px;
}
.send-money-from-locations .send-money-from-locations-form .form-group.form-btn button {
  border: none;
  background-color: #61C01A;
  color: #FFF;
  height: 52px !important;
}
.send-money-from-locations .send-money-from-locations-form .form-group.form-btn button:hover {
  color: #FFF;
}
.send-money-from-locations .send-money-from-locations-form .form-group.form-erros {
  padding-top: 8px;
  min-height: initial;
}
.send-money-from-locations .send-money-from-locations-form .form-group .send-money-from-locations-error {
  background-color: #FFF;
  border: 1px solid #201751;
  border-radius: 8px;
  padding: 16px 20px;
}
.send-money-from-locations .send-money-from-locations-form .form-group .send-money-from-locations-error .error-details {
  padding: 4px 0;
  font-size: 16px;
  font-weight: 700;
  text-align: start;
  color: var(--bs-red);
}
.send-money-from-locations .send-money-from-locations-form .form-group .send-money-from-locations-error .error-details span {
  font-weight: 500;
}
.send-money-from-locations .send-money-from-locations-form .form-group .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #201751;
}
.send-money-from-locations .send-money-from-locations-form .form-group .select2-container .select2-selection--single .select2-selection__rendered {
  padding-inline: 8px 20px !important;
}
.send-money-from-locations .send-money-from-locations-form .form-group .select2-container--default .select2-selection--single .select2-selection__clear {
  order: 2;
  margin-inline-end: 28px;
  padding-top: 0px;
}
.send-money-from-locations .send-money-from-locations-form .form-group .select2-container--default .select2-selection--single .select2-selection__clear span {
  font-size: 16px;
  position: relative;
  top: 1px;
}
.send-money-from-locations .send-money-from-locations-form .form-group div.is-invalid {
  display: none;
  width: 100%;
  margin-top: 4px;
  font-size: 12px;
  color: var(--bs-warning);
}
.send-money-from-locations .modal-content {
  background-color: #f9f9f9;
}
.send-money-from-locations .locations-wrap {
  position: relative;
  row-gap: 12px;
  height: auto;
  max-height: 520px;
}
@media only screen and (min-width: 992px) {
  .send-money-from-locations .locations-wrap {
    max-height: 720px;
  }
}
.send-money-from-locations .locations-wrap {
  overflow-y: auto;
}
.send-money-from-locations .locations-wrap .location-wrap {
  display: flex;
  height: auto;
  width: auto;
  min-width: 100%;
}
.send-money-from-locations .locations-wrap .location-wrap .location-card {
  border: none;
  border-radius: 8px;
  box-shadow: inset 0px 2px 8px 4px rgba(255, 255, 255, 0.44), 0px 16px 8px -12px rgba(0, 0, 0, 0.44);
  padding: 12px;
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  min-height: 100%;
  height: auto;
  width: auto;
  min-width: 100%;
  margin-block-end: 16px;
}
.send-money-from-locations .locations-wrap .location-wrap .location-card .location-header {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  word-wrap: break-word;
  min-width: 100%;
  width: auto;
  line-height: 1.4;
}
.send-money-from-locations .locations-wrap .location-wrap .location-card .location-header .location-icon {
  display: inline-flex;
  margin-inline-end: 8px;
  color: #61C01A;
  justify-content: center;
  align-items: start;
  height: 100%;
  padding-top: 2px;
}
.send-money-from-locations .locations-wrap .location-wrap .location-card .location-header .location-icon i {
  font-size: 20px;
  line-height: 20px;
}
.send-money-from-locations .locations-wrap .location-wrap .location-card .location-header .location-title {
  word-wrap: break-word;
  line-height: 1.4;
}
.send-money-from-locations .locations-wrap .location-wrap .location-card .location-header .location-title h5 {
  text-transform: capitalize;
  margin-bottom: 0px;
  font-size: 16px;
  max-width: 100%;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  max-height: 2.8em;
  min-height: 2.8em;
  color: #201751;
}
.send-money-from-locations .locations-wrap .location-wrap .location-card .location-info {
  padding-top: 8px;
  min-height: 80px;
}
.send-money-from-locations .locations-wrap .location-wrap .location-card .location-info .info-details {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 4px;
  color: #201751;
}
.send-money-from-locations .locations-wrap .location-wrap .location-card .location-info .info-details span {
  font-weight: 600;
  display: block;
}
.send-money-from-locations .locations-wrap .location-wrap .location-card .location-info .info-details .telephone-link {
  color: #61C01A;
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}
.send-money-from-locations .locations-wrap .location-wrap .location-card .location-map .get-direction-link {
  font-size: 14px;
  color: #61C01A;
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}

.google-map-div {
  width: 100%;
  height: 520px;
}
@media only screen and (min-width: 992px) {
  .google-map-div {
    height: 720px;
  }
}
.google-map-div .google-map {
  width: 100%;
  height: 100%;
}
.google-map-div .google-map .gm-style-iw-ch {
  color: #201751;
  font-size: 16px;
  font-weight: 600;
}
.google-map-div .google-map .gm-style-iw-d .info-details {
  font-size: 14px;
  color: #201751;
  margin-block-end: 4px;
}
.google-map-div .google-map .gm-style-iw-d .info-details span {
  font-weight: 600;
}
.google-map-div .google-map .gm-style-iw-d .info-details .telephone-link {
  color: #61C01A;
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}
.google-map-div .google-map .gm-style-iw-d .get-direction-link {
  font-size: 14px;
  color: #61C01A;
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}

.page-nav {
  text-align: center;
}
.page-nav li {
  margin: 0 5px;
  display: inline-block;
}
.page-nav li a {
  display: block;
  width: 45px;
  height: 45px;
  font-size: 18px;
  line-height: 42px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  background-color: #FFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.page-nav li a i {
  font-size: 18px;
  line-height: 42px;
  position: relative;
  top: 3px;
  margin: 0 auto;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.page-nav li a.active, .page-nav li a:hover {
  color: #FFF;
  opacity: 1;
  background-color: #61C01A;
  border-color: transparent;
}
.page-nav li a.active i, .page-nav li a:hover i {
  color: #FFF;
}

.blog-details-wrap article, .news-details-wrap article {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.7;
  font-size: 16px;
  color: #201751;
}
.blog-details-wrap article.no-border-bottom, .news-details-wrap article.no-border-bottom {
  border-bottom: none;
}
.blog-details-wrap article .article-header, .news-details-wrap article .article-header {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-bottom: 16px;
}
.blog-details-wrap article .article-header span, .news-details-wrap article .article-header span {
  color: #61C01A;
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 500;
}
.blog-details-wrap article .article-header h1, .blog-details-wrap article .article-header h2, .blog-details-wrap article .article-header h3, .blog-details-wrap article .article-header h4, .blog-details-wrap article .article-header h5, .blog-details-wrap article .article-header h6, .news-details-wrap article .article-header h1, .news-details-wrap article .article-header h2, .news-details-wrap article .article-header h3, .news-details-wrap article .article-header h4, .news-details-wrap article .article-header h5, .news-details-wrap article .article-header h6 {
  color: #201751;
  margin-bottom: 0px;
  font-weight: 700;
  line-height: 1.2;
}
.blog-details-wrap article .article-header h1, .news-details-wrap article .article-header h1 {
  font-size: 60px;
}
.blog-details-wrap article .article-header h2, .news-details-wrap article .article-header h2 {
  font-size: 44px;
}
.blog-details-wrap article .article-header h3, .news-details-wrap article .article-header h3 {
  font-size: 32px;
}
.blog-details-wrap article .article-header h4, .news-details-wrap article .article-header h4 {
  font-size: 24px;
}
.blog-details-wrap article .article-header h5, .news-details-wrap article .article-header h5 {
  font-size: 20px;
}
.blog-details-wrap article .article-header h6, .news-details-wrap article .article-header h6 {
  font-size: 16px;
}
.blog-details-wrap article p, .news-details-wrap article p {
  margin-block: 0px 16px;
}
.blog-details-wrap article strong, .blog-details-wrap article b, .news-details-wrap article strong, .news-details-wrap article b {
  color: #201751;
}
.blog-details-wrap article em,
.blog-details-wrap article i, .news-details-wrap article em,
.news-details-wrap article i {
  font-style: italic;
  color: #61C01A;
}
.blog-details-wrap article a, .news-details-wrap article a {
  color: rgb(144.4, 210.9, 94.7);
  text-decoration: underline;
  word-break: break-word;
}
.blog-details-wrap article a:hover, .news-details-wrap article a:hover {
  color: #61C01A;
}
.blog-details-wrap article img, .news-details-wrap article img {
  border-radius: 8px;
  margin: 8px;
  max-width: 100%;
  height: auto;
  display: block;
}
.blog-details-wrap article h1, .blog-details-wrap article h2, .blog-details-wrap article h3, .blog-details-wrap article h4, .blog-details-wrap article h5, .blog-details-wrap article h6, .news-details-wrap article h1, .news-details-wrap article h2, .news-details-wrap article h3, .news-details-wrap article h4, .news-details-wrap article h5, .news-details-wrap article h6 {
  color: #201751;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.blog-details-wrap article h1::first-letter, .blog-details-wrap article h2::first-letter, .blog-details-wrap article h3::first-letter, .blog-details-wrap article h4::first-letter, .blog-details-wrap article h5::first-letter, .blog-details-wrap article h6::first-letter, .news-details-wrap article h1::first-letter, .news-details-wrap article h2::first-letter, .news-details-wrap article h3::first-letter, .news-details-wrap article h4::first-letter, .news-details-wrap article h5::first-letter, .news-details-wrap article h6::first-letter {
  text-transform: capitalize;
}
.blog-details-wrap article h1, .news-details-wrap article h1 {
  font-size: 30px;
}
.blog-details-wrap article h2, .news-details-wrap article h2 {
  font-size: 28px;
}
.blog-details-wrap article h3, .news-details-wrap article h3 {
  font-size: 26px;
}
.blog-details-wrap article h4, .news-details-wrap article h4 {
  font-size: 24px;
}
.blog-details-wrap article h5, .news-details-wrap article h5 {
  font-size: 22px;
}
.blog-details-wrap article h6, .news-details-wrap article h6 {
  font-size: 20px;
}
.blog-details-wrap article blockquote, .news-details-wrap 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);
}
.blog-details-wrap article ol, .blog-details-wrap article ul, .news-details-wrap article ol, .news-details-wrap article ul {
  margin-block: 12px 16px;
  padding-inline-start: 20px;
}
.blog-details-wrap article ol li, .blog-details-wrap article ul li, .news-details-wrap article ol li, .news-details-wrap article ul li {
  font-size: 16px;
  color: #201751;
  margin-bottom: 8px;
  line-height: 1.6;
}
.blog-details-wrap article ul, .news-details-wrap article ul {
  list-style: none;
}
.blog-details-wrap article ul li, .news-details-wrap article ul li {
  display: flex;
  align-items: center;
}
.blog-details-wrap article ul li:before, .news-details-wrap 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;
}
.blog-details-wrap article.ul-style-2 ul li, .news-details-wrap article.ul-style-2 ul li {
  display: flex;
  align-items: center;
}
.blog-details-wrap article.ul-style-2 ul li:before, .news-details-wrap 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;
}
.blog-details-wrap article.list-padding-start-0 ol, .blog-details-wrap article.list-padding-start-0 ul, .news-details-wrap article.list-padding-start-0 ol, .news-details-wrap article.list-padding-start-0 ul {
  padding-inline-start: 0px;
}
.blog-details-wrap article table, .news-details-wrap article table {
  width: 100%;
  border-collapse: collapse;
  margin-block: 16px;
}
.blog-details-wrap article table th, .blog-details-wrap article table td, .news-details-wrap article table th, .news-details-wrap article table td {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 12px;
}
.blog-details-wrap article table th, .news-details-wrap article table th {
  background: rgba(32, 23, 81, 0.1);
  color: #201751;
}
@media only screen and (max-width: 767.98px) {
  .blog-details-wrap article, .news-details-wrap article {
    font-size: 14px;
  }
  .blog-details-wrap article .article-header span, .news-details-wrap article .article-header span {
    font-size: 16px;
  }
  .blog-details-wrap article .article-header h1, .news-details-wrap article .article-header h1 {
    font-size: 30px;
  }
  .blog-details-wrap article .article-header h2, .news-details-wrap article .article-header h2 {
    font-size: 24px;
  }
  .blog-details-wrap article .article-header h3, .news-details-wrap article .article-header h3 {
    font-size: 22px;
  }
  .blog-details-wrap article .article-header h4, .news-details-wrap article .article-header h4 {
    font-size: 20px;
  }
  .blog-details-wrap article .article-header h5, .news-details-wrap article .article-header h5 {
    font-size: 18px;
  }
  .blog-details-wrap article .article-header h6, .news-details-wrap article .article-header h6 {
    font-size: 16px;
  }
  .blog-details-wrap article p, .news-details-wrap article p {
    font-size: 14px;
  }
  .blog-details-wrap article strong,
  .blog-details-wrap article b, .news-details-wrap article strong,
  .news-details-wrap article b {
    font-size: 14px;
  }
  .blog-details-wrap article em,
  .blog-details-wrap article i, .news-details-wrap article em,
  .news-details-wrap article i {
    font-size: 14px;
  }
  .blog-details-wrap article a, .news-details-wrap article a {
    font-size: 14px;
  }
  .blog-details-wrap article h1, .news-details-wrap article h1 {
    font-size: 28px;
  }
  .blog-details-wrap article h2, .news-details-wrap article h2 {
    font-size: 24px;
  }
  .blog-details-wrap article h3, .news-details-wrap article h3 {
    font-size: 22px;
  }
  .blog-details-wrap article h4, .news-details-wrap article h4 {
    font-size: 20px;
  }
  .blog-details-wrap article h5, .news-details-wrap article h5 {
    font-size: 18px;
  }
  .blog-details-wrap article h6, .news-details-wrap article h6 {
    font-size: 16px;
  }
  .blog-details-wrap article blockquote, .news-details-wrap article blockquote {
    font-size: 14px;
  }
  .blog-details-wrap article ol,
  .blog-details-wrap article ul, .news-details-wrap article ol,
  .news-details-wrap article ul {
    margin-block: 8px 12px;
    padding-inline-start: 16px;
  }
  .blog-details-wrap article ol li,
  .blog-details-wrap article ul li, .news-details-wrap article ol li,
  .news-details-wrap article ul li {
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.4;
  }
  .blog-details-wrap article ul li:before, .news-details-wrap article ul li:before {
    font-size: 14px;
    padding-top: 3px;
  }
  .blog-details-wrap article.ul-style-2 ul li:before, .news-details-wrap article.ul-style-2 ul li:before {
    flex: 0 0 24px;
    font-size: 10px;
    width: 24px;
    height: 24px;
  }
  .blog-details-wrap article table th, .news-details-wrap article table th {
    font-size: 16px;
  }
  .blog-details-wrap article table td, .news-details-wrap article table td {
    font-size: 14px;
  }
}
.blog-details-wrap .post-metainfo, .news-details-wrap .post-metainfo {
  line-height: 1;
  margin-bottom: 16px;
  padding-inline-start: 0px;
}
.blog-details-wrap .post-metainfo li, .news-details-wrap .post-metainfo li {
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  position: relative;
  padding-inline-start: 24px;
  margin-inline-end: 24px;
  color: #201751;
}
.blog-details-wrap .post-metainfo li:after, .news-details-wrap .post-metainfo li:after {
  position: absolute;
  top: 0px;
  inset-inline-end: -12px;
  content: "";
  width: 1px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0.3);
}
.blog-details-wrap .post-metainfo li:last-child, .news-details-wrap .post-metainfo li:last-child {
  margin-inline-end: 0;
}
.blog-details-wrap .post-metainfo li:last-child:after, .news-details-wrap .post-metainfo li:last-child:after {
  display: none;
}
.blog-details-wrap .post-metainfo li a, .news-details-wrap .post-metainfo li a {
  font-size: 14px;
  color: rgb(144.4, 210.9, 94.7);
}
.blog-details-wrap .post-metainfo li a:hover, .news-details-wrap .post-metainfo li a:hover {
  color: #61C01A;
}
.blog-details-wrap .post-metainfo li i, .news-details-wrap .post-metainfo li i {
  font-size: 14px;
  color: #61C01A;
  position: absolute;
  top: 1px;
  inset-inline-start: 0;
}
.blog-details-wrap .post-metainfo li i.ri-folder-3-line, .news-details-wrap .post-metainfo li i.ri-folder-3-line {
  top: -1px;
  font-size: 18px;
}
.blog-details-wrap .post-metainfo li:last-child, .news-details-wrap .post-metainfo li:last-child {
  margin-inline-end: 0;
}
.blog-details-wrap .post-metainfo li a, .news-details-wrap .post-metainfo li a {
  color: #666666;
}
.blog-details-wrap .post-img, .news-details-wrap .post-img {
  position: relative;
  margin: 0 0 20px;
  display: block;
  aspect-ratio: 1280/720;
  overflow: hidden;
}
.blog-details-wrap .post-img img, .news-details-wrap .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin: 0px !important;
}
.blog-details-wrap .post-img .blog-date, .news-details-wrap .post-img .blog-date {
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 7px 32px 8px;
  position: absolute;
  top: -10px;
  inset-inline-start: 20px;
  z-index: 1;
  background-color: #61C01A;
  color: #FFF;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog-details-wrap .post-img .blog-date:hover, .news-details-wrap .post-img .blog-date:hover {
  background: #2b0d61;
  color: #FFF;
}
.blog-details-wrap .post-meta-option, .news-details-wrap .post-meta-option {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 24px;
}
.blog-details-wrap .post-tag ul, .news-details-wrap .post-tag ul {
  display: inline-block;
}
.blog-details-wrap .post-tag ul li, .news-details-wrap .post-tag ul li {
  display: inline-block;
}
.blog-details-wrap .post-tag ul li a, .news-details-wrap .post-tag ul li a {
  color: rgb(144.4, 210.9, 94.7);
  font-size: 16px;
  border-radius: 3px;
}
.blog-details-wrap .post-tag ul li a:hover, .news-details-wrap .post-tag ul li a:hover {
  color: #61C01A;
}
.blog-details-wrap .post-tag span, .news-details-wrap .post-tag span {
  margin-inline-end: 10px;
  font-weight: 500;
  color: #201751;
}
.blog-details-wrap .post-share, .news-details-wrap .post-share {
  display: inline-block;
}
.blog-details-wrap .post-share span, .news-details-wrap .post-share span {
  font-weight: 500;
  color: #201751;
}
.blog-details-wrap .post-share ul, .news-details-wrap .post-share ul {
  display: inline-block;
  margin-inline-start: 4px;
}
.blog-details-wrap .comment-item-wrap .comment-item, .news-details-wrap .comment-item-wrap .comment-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 0 24px 0;
  margin-bottom: 24px;
  border-radius: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.blog-details-wrap .comment-item-wrap .comment-item.reply, .news-details-wrap .comment-item-wrap .comment-item.reply {
  margin-inline-start: 40px;
}
.blog-details-wrap .comment-item-wrap .comment-item:last-child, .news-details-wrap .comment-item-wrap .comment-item:last-child {
  margin-bottom: 0;
}
.blog-details-wrap .comment-item-wrap .comment-item .comment-author-img, .news-details-wrap .comment-item-wrap .comment-item .comment-author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  top: 4px;
}
.blog-details-wrap .comment-item-wrap .comment-item .comment-author-img img, .news-details-wrap .comment-item-wrap .comment-item .comment-author-img img {
  border-radius: 50%;
}
.blog-details-wrap .comment-item-wrap .comment-item .comment-author-wrap, .news-details-wrap .comment-item-wrap .comment-item .comment-author-wrap {
  width: calc(100% - 120px);
  margin-inline-start: 20px;
}
.blog-details-wrap .comment-item-wrap .comment-item .comment-author-wrap .comment-author-name, .news-details-wrap .comment-item-wrap .comment-item .comment-author-wrap .comment-author-name {
  margin: 0 0 9px;
}
.blog-details-wrap .comment-item-wrap .comment-item .comment-author-wrap .comment-author-name h5, .news-details-wrap .comment-item-wrap .comment-item .comment-author-wrap .comment-author-name h5 {
  line-height: 1;
  margin: 0 20px 0 0;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
}
.blog-details-wrap .comment-item-wrap .comment-item .comment-author-wrap .comment-author-name .comment-date, .news-details-wrap .comment-item-wrap .comment-item .comment-author-wrap .comment-author-name .comment-date {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 12px;
}
.blog-details-wrap .comment-item-wrap .comment-item .comment-author-wrap .comment-text, .news-details-wrap .comment-item-wrap .comment-item .comment-author-wrap .comment-text {
  margin: 0 0 10px;
}
.blog-details-wrap .comment-item-wrap .comment-item .comment-author-wrap .comment-text p, .news-details-wrap .comment-item-wrap .comment-item .comment-author-wrap .comment-text p {
  margin: 0 0 5px;
}
.blog-details-wrap .comment-box-title h4, .news-details-wrap .comment-box-title h4 {
  margin-bottom: 0;
  line-height: 1;
  position: relative;
  padding-bottom: 15px;
}
.blog-details-wrap .comment-box-title h4:after, .news-details-wrap .comment-box-title h4:after {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 150px;
  height: 2px;
  content: "";
  background: #61C01A;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.blog-details-wrap .comment-box-title p, .news-details-wrap .comment-box-title p {
  margin-top: 10px;
  margin-bottom: 0;
}
.blog-details-wrap .comment-form-wrap, .news-details-wrap .comment-form-wrap {
  margin-top: 36px;
}
.blog-details-wrap .comment-form-wrap label, .news-details-wrap .comment-form-wrap label {
  color: rgb(28.8, 20.7, 72.9);
  padding-inline-start: 20px;
}
.blog-details-wrap .comment-form-wrap .comment-form .form-group, .news-details-wrap .comment-form-wrap .comment-form .form-group {
  margin: 0 0 20px;
  position: relative;
}
.blog-details-wrap .comment-form-wrap .comment-form .form-group > label, .news-details-wrap .comment-form-wrap .comment-form .form-group > label {
  font-weight: 500;
  display: block;
  margin: 0 0 4px;
  padding-inline-start: 0;
  color: rgba(0, 0, 0, 0.4);
}
.blog-details-wrap .comment-form-wrap .comment-form .form-group input,
.blog-details-wrap .comment-form-wrap .comment-form .form-group textarea, .news-details-wrap .comment-form-wrap .comment-form .form-group input,
.news-details-wrap .comment-form-wrap .comment-form .form-group textarea {
  width: 100%;
  background: #FFF;
  color: rgba(32, 23, 81, 0.85);
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #61C01A;
}
.blog-details-wrap .comment-form-wrap .comment-form .form-group input:focus,
.blog-details-wrap .comment-form-wrap .comment-form .form-group textarea:focus, .news-details-wrap .comment-form-wrap .comment-form .form-group input:focus,
.news-details-wrap .comment-form-wrap .comment-form .form-group textarea:focus {
  color: #201751;
  box-shadow: 1px 2px 4px 0px #61C01A;
}
.blog-details-wrap .comment-form-wrap .comment-form .form-group input, .news-details-wrap .comment-form-wrap .comment-form .form-group input {
  height: 52px;
}
.blog-details-wrap .comment-form-wrap .comment-form .form-group textarea, .news-details-wrap .comment-form-wrap .comment-form .form-group textarea {
  height: 144px;
  resize: none;
}
.blog-details-wrap .comment-form-wrap .comment-form .form-group .comment-note, .news-details-wrap .comment-form-wrap .comment-form .form-group .comment-note {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.75;
  color: rgba(0, 0, 0, 0.85);
}
.blog-details-wrap .comment-form-wrap .comment-form .form-group .comment-note span, .news-details-wrap .comment-form-wrap .comment-form .form-group .comment-note span {
  font-weight: 600;
}
.blog-details-wrap .comment-form-wrap .comment-form .checkbox, .news-details-wrap .comment-form-wrap .comment-form .checkbox {
  display: block;
}
.blog-details-wrap .comment-form-wrap .comment-form .checkbox input, .news-details-wrap .comment-form-wrap .comment-form .checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.blog-details-wrap .comment-form-wrap .comment-form .checkbox label, .news-details-wrap .comment-form-wrap .comment-form .checkbox label {
  position: relative;
  cursor: pointer;
  padding-inline-start: 20px;
}
.blog-details-wrap .comment-form-wrap .comment-form .checkbox label:before, .news-details-wrap .comment-form-wrap .comment-form .checkbox label:before {
  content: "";
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid #201751;
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  border-radius: 50%;
  vertical-align: middle;
  cursor: pointer;
  margin-inline-end: 4px;
  position: absolute;
  inset-inline-start: 0;
  top: 3px;
}
.blog-details-wrap .comment-form-wrap .comment-form .checkbox a, .news-details-wrap .comment-form-wrap .comment-form .checkbox a {
  color: #201751;
}
.blog-details-wrap .comment-form-wrap .comment-form .checkbox.style2 label:before, .news-details-wrap .comment-form-wrap .comment-form .checkbox.style2 label:before {
  border-radius: 50%;
  border-color: #201751;
}
.blog-details-wrap .comment-form-wrap .comment-form .checkbox input:checked + label:before, .news-details-wrap .comment-form-wrap .comment-form .checkbox input:checked + label:before {
  border-color: #61C01A;
}
.blog-details-wrap .comment-form-wrap .comment-form .checkbox input:checked + label:after, .news-details-wrap .comment-form-wrap .comment-form .checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  inset-inline-start: 3px;
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  background: #61C01A;
}
.blog-details-wrap .comment-form-wrap .comment-form .btn.disabled, .blog-details-wrap .comment-form-wrap .comment-form .btn:disabled, .news-details-wrap .comment-form-wrap .comment-form .btn.disabled, .news-details-wrap .comment-form-wrap .comment-form .btn:disabled {
  background-color: #201751;
  opacity: 0.75;
  color: #FFF;
}

.loader {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loader img {
  width: 220px;
  opacity: 0;
  animation: fadeInLogo 1s ease-in forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInLogo {
  to {
    opacity: 1;
  }
}
@keyframes bouncing {
  0%, 100% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }
  45% {
    transform: translateY(80px) scale(1, 1);
    animation-timing-function: linear;
  }
  50% {
    transform: translateY(80px) scale(1.5, 0.5);
    animation-timing-function: linear;
  }
  55% {
    transform: translateY(80px) scale(1, 1);
    animation-timing-function: ease-out;
  }
}
.section-title, .content-title {
  position: relative;
}
.section-title h2, .content-title h2 {
  font-size: 4px;
  margin: 0;
  line-height: 1.4;
  color: #201751;
  text-transform: capitalize;
}
.section-title p, .content-title p {
  margin: 12px 0 0;
  color: rgb(30.4, 21.85, 76.95);
}
.section-title h1:first-letter, .section-title h2:first-letter, .section-title h3:first-letter, .section-title h4:first-letter, .section-title h5:first-letter, .section-title h6:first-letter, .content-title h1:first-letter, .content-title h2:first-letter, .content-title h3:first-letter, .content-title h4:first-letter, .content-title h5:first-letter, .content-title h6:first-letter {
  text-transform: capitalize;
}
.section-title span, .content-title span {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
  line-height: 1;
  color: #201751;
  text-transform: capitalize;
}
.section-title span p, .content-title span p {
  margin: 10px auto 0;
}
.section-title.style1 span, .content-title.style1 span {
  font-size: 20px;
  color: #61C01A;
}
.section-title.style2 h2, .content-title.style2 h2 {
  color: #61C01A;
}
.section-title.style2 p, .content-title.style2 p {
  color: rgb(92.15, 182.4, 24.7);
}
.section-title.style2 span, .content-title.style2 span {
  color: #61C01A;
}

.social-profile li {
  display: inline-block;
  margin: 0 4px;
}
.social-profile li:first-child {
  margin-inline-start: 0;
}
.social-profile li:last-child {
  margin-inline-end: 0;
}
.social-profile li a {
  display: block;
  text-align: center;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.social-profile li a i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  line-height: 0.8;
}
.social-profile li a:hover {
  border-color: transparent;
  color: #61C01A;
}
.social-profile.style1 li a, .social-profile.style2 li a {
  width: 32px;
  height: 32px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.social-profile.style1 li a i, .social-profile.style2 li a i {
  color: #61C01A;
}
.social-profile.style1 li a {
  background-color: #201751;
  border-radius: 4px;
}
.social-profile.style1 li a i {
  color: #61C01A;
}
.social-profile.style1 li a:hover {
  background-color: #61C01A;
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  transform: translateY(-3px);
}
.social-profile.style1 li a:hover i {
  color: #201751;
}
.social-profile.style2 li a {
  background-color: #FFF;
  border-color: #FFF;
  color: rgb(98.9, 92.6, 133.2);
  border-radius: 4px;
}
.social-profile.style2 li a i {
  color: rgb(98.9, 92.6, 133.2);
}
.social-profile.style2 li a:hover {
  background-color: #FFF;
  color: #201751;
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  transform: translateY(-3px);
}
.social-profile.style2 li a:hover i {
  color: #201751;
}

.testimonial-slider-one {
  margin-top: -10px;
}
.testimonial-slider-one.owl-carousel .owl-stage {
  display: flex;
}
.testimonial-slider-one.owl-carousel .testimonial-card {
  margin-top: 10px !important;
}
.testimonial-slider-one.owl-carousel .owl-nav button.owl-prev, .testimonial-slider-one.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(97, 192, 26, 0.08);
  border: none;
}
.testimonial-slider-one.owl-carousel .owl-nav button.owl-prev i, .testimonial-slider-one.owl-carousel .owl-nav button.owl-next i {
  color: #61C01A;
}
.testimonial-slider-one.owl-carousel .owl-nav button.owl-prev:hover, .testimonial-slider-one.owl-carousel .owl-nav button.owl-next:hover {
  background: #61C01A;
}
.testimonial-slider-one.owl-carousel .owl-nav button.owl-prev:hover i, .testimonial-slider-one.owl-carousel .owl-nav button.owl-next:hover i {
  color: #FFF;
}
.testimonial-slider-one.owl-carousel .owl-nav button.owl-prev {
  inset-inline-start: -55px;
}
.testimonial-slider-one.owl-carousel .owl-nav button.owl-next {
  inset-inline-end: -55px;
}

.testimonial-card {
  background-color: #FFF;
  border-radius: 4px;
  margin: 0 0 24px;
  position: relative;
  box-shadow: 0 0px 15px rgba(32, 23, 81, 0.1);
  z-index: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: -webkit-fill-available;
  height: -webkit-fill-available;
}
.testimonial-card .ratings {
  line-height: 1;
}
.testimonial-card .ratings li {
  display: inline-block;
}
.testimonial-card .ratings li i {
  color: #61C01A;
  font-size: 16px;
  line-height: 0.8;
}
.testimonial-card .client-quote {
  flex-grow: 1;
  margin-bottom: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.testimonial-card .client-info-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.testimonial-card .client-info-area .client-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  width: calc(100% - 40px);
}
.testimonial-card .client-info-area .client-info-wrap .client-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}
.testimonial-card .client-info-area .client-info-wrap .client-img img {
  border-radius: 50%;
}
.testimonial-card .client-info-area .client-info-wrap .client-info {
  width: calc(100% - 85px);
  margin-inline-start: 20px;
}
.testimonial-card .client-info-area .client-info-wrap .client-info h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 8px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.testimonial-card .client-info-area .client-info-wrap .client-info span {
  font-size: 14px;
  display: block;
  line-height: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.testimonial-card .client-info-area .quote-icon i {
  display: inline-block;
  position: relative;
  top: 3px;
  font-size: 40px;
  line-height: 0.8;
  opacity: 0.4;
}
.testimonial-card .client-info-area .quote-icon i.primary-color {
  color: #201751;
}
.testimonial-card .client-info-area .quote-icon i.secondary-color {
  color: #61C01A;
}
.testimonial-card .client-info {
  width: 100%;
}
.testimonial-card .client-info h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 8px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.testimonial-card .client-info span {
  font-size: 14px;
  display: block;
  line-height: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.testimonial-thumb-slider {
  margin: -10px 0;
}
.testimonial-thumb-slider .owl-item.current .testimonial-card-thumb {
  border-color: #61C01A;
}

.testimonial-card-thumb {
  background-color: #FFF;
  padding: 25px;
  border-radius: 4px;
  margin: 10px 0;
  border: 1px solid transparent;
  box-shadow: 0px 0px 20px rgba(85, 85, 85, 0.07);
  max-width: 320px;
  margin: 35px auto 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.testimonial-card-thumb .client-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.testimonial-card-thumb .client-info-wrap .client-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}
.testimonial-card-thumb .client-info-wrap .client-img img {
  border-radius: 50%;
}
.testimonial-card-thumb .client-info-wrap .client-info {
  width: calc(100% - 85px);
  margin-inline-start: 20px;
  text-align: start;
}
.testimonial-card-thumb .client-info-wrap .client-info h4 {
  font-size: 20px;
  margin: 0 0 3px;
}
.testimonial-card-thumb .client-info-wrap .client-info span {
  color: #666666;
}

/* From Uiverse.io by gharsh11032000 */
.card-bg-flip {
  position: relative;
  width: 190px;
  height: 254px;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 12px;
  gap: 12px;
  border-radius: 8px;
  cursor: pointer;
}
.card-bg-flip:before {
  content: "";
  position: absolute;
  inset: 0;
  left: -5px;
  margin: auto;
  width: 200px;
  height: 264px;
  border-radius: 10px;
  background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100%);
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-bg-flip:after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100%);
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}
.card-bg-flip .heading {
  text-transform: capitalize;
  font-weight: 700;
}
.card-bg-flip p {
  font-size: 14px;
}
.card-bg-flip p:last-child {
  color: #e81cff;
  font-weight: 600;
}
.card-bg-flip:hover::after {
  filter: blur(30px);
}
.card-bg-flip:hover::before {
  transform: rotate(-90deg) scaleX(1.34) scaleY(0.77);
}

.card-hover {
  width: 190px;
  height: 254px;
  background: #171717;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5333333333);
  cursor: pointer;
}
.card-hover .content {
  border-radius: 5px;
  background: #171717;
  width: 186px;
  height: 250px;
  z-index: 1;
  padding: 20px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-hover .content:before {
  opacity: 0;
  transition: opacity 300ms;
  content: " ";
  display: block;
  background: white;
  width: 5px;
  height: 50px;
  position: absolute;
  filter: blur(50px);
  overflow: hidden;
}
.card-hover:hover .content::before {
  opacity: 1;
}
.card-hover:before {
  opacity: 0;
  content: " ";
  position: absolute;
  display: block;
  width: 80px;
  height: 360px;
  background: linear-gradient(#ff2288, #387ef0);
  transition: opacity 300ms;
  animation: rotation_9018 8000ms infinite linear;
  animation-play-state: paused;
}
.card-hover:hover:before {
  opacity: 1;
  animation-play-state: running;
}
.card-hover:after {
  position: absolute;
  content: " ";
  display: block;
  width: 250px;
  height: 360px;
  background: rgba(23, 23, 23, 0.2);
  backdrop-filter: blur(50px);
}

@keyframes rotation_9018 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.our-partners {
  padding-block: 92px;
  background-color: #f9f9f9;
}
.our-partners .our-partners-title {
  text-align: center;
  margin-bottom: 36px;
  font-weight: 700;
  font-size: 28px;
  color: #201751;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .our-partners .our-partners-title {
    font-size: 36px;
  }
}
.our-partners .container {
  display: flex;
  justify-content: center !important;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 32px;
  column-gap: 36px;
}
@media only screen and (min-width: 768px) {
  .our-partners .container {
    row-gap: 20px;
    column-gap: 24px;
  }
}
.our-partners .container .partner-logo {
  height: 44px;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .our-partners .container .partner-logo {
    height: 80px;
  }
}
.our-partners .container .partner-logo img {
  object-fit: contain;
  max-height: 44px;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .our-partners .container .partner-logo img {
    height: 80px;
  }
}

.block-wrap {
  position: relative;
}
.block-wrap .block-main-header {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
.block-wrap .block-main-header span {
  display: inline-block;
  color: #61C01A;
  font-size: 14px;
  font-weight: 500;
  margin-block: 0px 4px;
  z-index: 1;
  line-height: 1;
  text-transform: capitalize;
}
@media only screen and (min-width: 992px) {
  .block-wrap .block-main-header span {
    font-size: 16px;
    margin-block: 0px 8px;
  }
}
.block-wrap .block-main-header h1,
.block-wrap .block-main-header h2,
.block-wrap .block-main-header h3,
.block-wrap .block-main-header h4,
.block-wrap .block-main-header h5,
.block-wrap .block-main-header h6 {
  color: #201751;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.2;
}
.block-wrap .block-main-header h1::first-letter,
.block-wrap .block-main-header h2::first-letter,
.block-wrap .block-main-header h3::first-letter,
.block-wrap .block-main-header h4::first-letter,
.block-wrap .block-main-header h5::first-letter,
.block-wrap .block-main-header h6::first-letter {
  text-transform: capitalize;
}
.block-wrap .block-main-header h1 {
  font-size: 56px;
}
.block-wrap .block-main-header h2 {
  font-size: 40px;
}
.block-wrap .block-main-header h3 {
  font-size: 28px;
}
.block-wrap .block-main-header h4 {
  font-size: 24px;
}
.block-wrap .block-main-header h5 {
  font-size: 20px;
}
.block-wrap .block-main-header h6 {
  font-size: 16px;
}
@media only screen and (min-width: 992px) {
  .block-wrap .block-main-header h1,
  .block-wrap .block-main-header h2,
  .block-wrap .block-main-header h3,
  .block-wrap .block-main-header h4,
  .block-wrap .block-main-header h5,
  .block-wrap .block-main-header h6 {
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.4;
  }
  .block-wrap .block-main-header h1 {
    font-size: 72px;
  }
  .block-wrap .block-main-header h2 {
    font-size: 48px;
  }
  .block-wrap .block-main-header h3 {
    font-size: 36px;
  }
  .block-wrap .block-main-header h4 {
    font-size: 28px;
  }
  .block-wrap .block-main-header h5 {
    font-size: 24px;
  }
  .block-wrap .block-main-header h6 {
    font-size: 20px;
  }
}
.block-wrap .block-main-header.start-alignment {
  align-items: start;
  width: 100%;
}
.block-wrap .block-sub-header {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
.block-wrap .block-sub-header span {
  display: inline-block;
  color: #61C01A;
  font-size: 14px;
  font-weight: 500;
  margin-block: 0px 4px;
  z-index: 1;
  line-height: 1;
  text-transform: capitalize;
}
@media only screen and (min-width: 992px) {
  .block-wrap .block-sub-header span {
    font-size: 16px;
    margin-block: 0px 8px;
  }
}
.block-wrap .block-sub-header h1,
.block-wrap .block-sub-header h2,
.block-wrap .block-sub-header h3,
.block-wrap .block-sub-header h4,
.block-wrap .block-sub-header h5,
.block-wrap .block-sub-header h6 {
  color: #201751;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.2;
}
.block-wrap .block-sub-header h1::first-letter,
.block-wrap .block-sub-header h2::first-letter,
.block-wrap .block-sub-header h3::first-letter,
.block-wrap .block-sub-header h4::first-letter,
.block-wrap .block-sub-header h5::first-letter,
.block-wrap .block-sub-header h6::first-letter {
  text-transform: capitalize;
}
.block-wrap .block-sub-header h1 {
  font-size: 38px;
}
.block-wrap .block-sub-header h2 {
  font-size: 30px;
}
.block-wrap .block-sub-header h3 {
  font-size: 24px;
}
.block-wrap .block-sub-header h4 {
  font-size: 20px;
}
.block-wrap .block-sub-header h5 {
  font-size: 18px;
}
.block-wrap .block-sub-header h6 {
  font-size: 16px;
}
@media only screen and (min-width: 992px) {
  .block-wrap .block-sub-header h1,
  .block-wrap .block-sub-header h2,
  .block-wrap .block-sub-header h3,
  .block-wrap .block-sub-header h4,
  .block-wrap .block-sub-header h5,
  .block-wrap .block-sub-header h6 {
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .block-wrap .block-sub-header h1 {
    font-size: 42px;
  }
  .block-wrap .block-sub-header h2 {
    font-size: 34px;
  }
  .block-wrap .block-sub-header h3 {
    font-size: 28px;
  }
  .block-wrap .block-sub-header h4 {
    font-size: 24px;
  }
  .block-wrap .block-sub-header h5 {
    font-size: 22px;
  }
  .block-wrap .block-sub-header h6 {
    font-size: 20px;
  }
}
.block-wrap .block-sub-header.center-alignment {
  align-items: center;
}
.block-wrap .block-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
.block-wrap .block-img-wrap {
  overflow: hidden;
  width: 800px;
  height: 600px;
  aspect-ratio: 4/3;
  border-radius: 8px;
}
.block-wrap .block-img-wrap .block-img {
  border-radius: 8px;
  width: 100%;
  max-width: 800px;
  height: 100%;
  max-height: 600px;
  object-fit: fill;
}
.block-wrap .block-img-wrap .block-img.cover {
  object-fit: cover !important;
}
.block-wrap .block-img-wrap.aspect-ratio-full {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.block-wrap .block-items {
  position: relative;
  row-gap: 24px;
  padding-block-end: 16px;
}
.block-wrap .block-items .block-item {
  min-height: 100%;
  height: auto;
  display: flex;
}
.block-wrap .block-items .block-item .block-card {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  min-height: 100%;
  height: auto;
  flex-grow: 1;
}
.block-wrap .block-items .block-item .block-card .item-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
}
.block-wrap .block-items .block-item .block-card .item-header .item-icon {
  position: relative;
  display: inline-block;
}
.block-wrap .block-items .block-item .block-card .item-header .item-title span {
  display: inline-block;
  color: #61C01A;
  font-size: 14px;
  font-weight: 500;
  margin-block: 0px 4px;
  z-index: 1;
  line-height: 1;
  text-transform: capitalize;
}
@media only screen and (min-width: 992px) {
  .block-wrap .block-items .block-item .block-card .item-header .item-title span {
    font-size: 16px;
    margin-block: 0px 8px;
  }
}
.block-wrap .block-items .block-item .block-card .item-header .item-title h1,
.block-wrap .block-items .block-item .block-card .item-header .item-title h2,
.block-wrap .block-items .block-item .block-card .item-header .item-title h3,
.block-wrap .block-items .block-item .block-card .item-header .item-title h4,
.block-wrap .block-items .block-item .block-card .item-header .item-title h5,
.block-wrap .block-items .block-item .block-card .item-header .item-title h6 {
  color: #201751;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.2;
}
.block-wrap .block-items .block-item .block-card .item-header .item-title h1::first-letter,
.block-wrap .block-items .block-item .block-card .item-header .item-title h2::first-letter,
.block-wrap .block-items .block-item .block-card .item-header .item-title h3::first-letter,
.block-wrap .block-items .block-item .block-card .item-header .item-title h4::first-letter,
.block-wrap .block-items .block-item .block-card .item-header .item-title h5::first-letter,
.block-wrap .block-items .block-item .block-card .item-header .item-title h6::first-letter {
  text-transform: capitalize;
}
.block-wrap .block-items .block-item .block-card .item-header .item-title h1 {
  font-size: 38px;
}
.block-wrap .block-items .block-item .block-card .item-header .item-title h2 {
  font-size: 30px;
}
.block-wrap .block-items .block-item .block-card .item-header .item-title h3 {
  font-size: 24px;
}
.block-wrap .block-items .block-item .block-card .item-header .item-title h4 {
  font-size: 20px;
}
.block-wrap .block-items .block-item .block-card .item-header .item-title h5 {
  font-size: 18px;
}
.block-wrap .block-items .block-item .block-card .item-header .item-title h6 {
  font-size: 16px;
}
@media only screen and (min-width: 992px) {
  .block-wrap .block-items .block-item .block-card .item-header .item-title h1,
  .block-wrap .block-items .block-item .block-card .item-header .item-title h2,
  .block-wrap .block-items .block-item .block-card .item-header .item-title h3,
  .block-wrap .block-items .block-item .block-card .item-header .item-title h4,
  .block-wrap .block-items .block-item .block-card .item-header .item-title h5,
  .block-wrap .block-items .block-item .block-card .item-header .item-title h6 {
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .block-wrap .block-items .block-item .block-card .item-header .item-title h1 {
    font-size: 42px;
  }
  .block-wrap .block-items .block-item .block-card .item-header .item-title h2 {
    font-size: 34px;
  }
  .block-wrap .block-items .block-item .block-card .item-header .item-title h3 {
    font-size: 28px;
  }
  .block-wrap .block-items .block-item .block-card .item-header .item-title h4 {
    font-size: 24px;
  }
  .block-wrap .block-items .block-item .block-card .item-header .item-title h5 {
    font-size: 22px;
  }
  .block-wrap .block-items .block-item .block-card .item-header .item-title h6 {
    font-size: 20px;
  }
}
.block-wrap .block-items .block-item .block-card .item-header.start-alignment {
  justify-content: start;
}
.block-wrap .block-items .block-item .block-card .item-content .item-img-wrap {
  overflow: hidden;
  width: 800px;
  height: 600px;
  aspect-ratio: 4/3;
  border-radius: 8px;
}
.block-wrap .block-items .block-item .block-card .item-content .item-img-wrap .item-img {
  border-radius: 8px;
  width: 100%;
  max-width: 800px;
  height: 100%;
  max-height: 600px;
  object-fit: fill;
}
.block-wrap .block-items .block-item .block-card .item-content .item-img-wrap .item-img.cover {
  object-fit: cover !important;
}
.block-wrap article {
  border-bottom: 0px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.block-wrap.block-style-1 .block-main-header h3 {
  font-weight: 500;
}
.block-wrap.block-style-1 .block-main-header h3 strong {
  font-weight: 700;
}
.block-wrap.block-style-1 .block-items .block-item .block-card {
  border: none;
  border-radius: 20px;
  box-shadow: inset 0px 2px 8px 4px rgba(255, 255, 255, 0.44), 0px 16px 8px -12px rgba(0, 0, 0, 0.44);
  padding: 12px;
  background-color: #201751;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  min-height: 100%;
  height: auto;
}
.block-wrap.block-style-1 .block-items .block-item .block-card .item-header {
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  width: auto;
}
.block-wrap.block-style-1 .block-items .block-item .block-card .item-header .item-icon {
  display: inline-block;
  margin-block-end: 12px;
  color: #FFF;
}
.block-wrap.block-style-1 .block-items .block-item .block-card .item-header .item-icon i {
  font-size: 56px;
}
.block-wrap.block-style-1 .block-items .block-item .block-card .item-header .item-title {
  text-align: center;
  padding-inline: 24px;
}
.block-wrap.block-style-1 .block-items .block-item .block-card .item-header .item-title h5 {
  color: #FFF;
  text-transform: capitalize;
  margin-bottom: 0px;
  max-width: 100%;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  max-height: 2.8em;
  min-height: 2.8em;
}
.block-wrap.block-style-1 .block-items .block-item .block-card .item-content {
  flex-grow: 1;
  padding-block: 12px 28px;
  padding-inline: 12px;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 120px;
}
@media only screen and (min-width: 768px) {
  .block-wrap.block-style-1 .block-items .block-item .block-card .item-content {
    min-height: 150px;
  }
}
.block-wrap.block-style-1 .block-items .block-item .block-card .item-content * {
  color: rgba(255, 255, 255, 0.85);
}
.block-wrap.block-style-1 .block-items .block-item:hover {
  transform: translateY(-8px);
  transition: 0.4s;
}
.block-wrap.block-style-2 .block-main-header h3 {
  font-weight: 500;
}
.block-wrap.block-style-2 .block-main-header h3 strong {
  font-weight: 700;
}
.block-wrap.block-style-2 .block-items .block-item .block-card {
  border: none;
  background: #f4f4f4;
  border-radius: 20px;
  box-shadow: inset 0px 2px 8px 4px rgba(255, 255, 255, 0.44), 0px 16px 8px -12px rgba(0, 0, 0, 0.44);
  padding: 12px;
  margin-block-end: 16px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  min-height: 100%;
  height: auto;
}
.block-wrap.block-style-2 .block-items .block-item .block-card .item-header {
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  width: auto;
}
.block-wrap.block-style-2 .block-items .block-item .block-card .item-header .item-icon {
  display: inline-block;
  margin-block-end: 12px;
  color: #61C01A;
}
.block-wrap.block-style-2 .block-items .block-item .block-card .item-header .item-icon i {
  font-size: 56px;
}
.block-wrap.block-style-2 .block-items .block-item .block-card .item-header .item-title {
  text-align: center;
  padding-inline: 24px;
}
.block-wrap.block-style-2 .block-items .block-item .block-card .item-header .item-title h5 {
  color: #61C01A;
  text-transform: capitalize;
  margin-bottom: 0px;
  max-width: 100%;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  max-height: 2.8em;
  min-height: 2.8em;
}
.block-wrap.block-style-2 .block-items .block-item .block-card .item-content {
  flex-grow: 1;
  padding-block: 12px 28px;
  padding-inline: 12px;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 120px;
}
@media only screen and (min-width: 768px) {
  .block-wrap.block-style-2 .block-items .block-item .block-card .item-content {
    min-height: 150px;
  }
}
.block-wrap.block-style-2 .block-items .block-item:hover {
  transform: translateY(-8px);
  transition: 0.4s;
}
.block-wrap.block-style-3 .block-main-header h3 {
  font-weight: 500;
}
.block-wrap.block-style-3 .block-main-header h3 strong {
  font-weight: 700;
}
.block-wrap.block-style-3 .block-items .block-item .block-card {
  border: none;
  background: #f4f4f4;
  border-radius: 20px;
  box-shadow: inset 0px 2px 8px 4px rgba(255, 255, 255, 0.44), 0px 16px 8px -12px rgba(0, 0, 0, 0.44);
  padding: 12px;
  margin-block-end: 16px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  min-height: 100%;
  height: auto;
}
.block-wrap.block-style-3 .block-items .block-item .block-card .item-header {
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  width: auto;
}
.block-wrap.block-style-3 .block-items .block-item .block-card .item-header .item-icon {
  display: inline-block;
  margin-block-end: 12px;
  color: #61C01A;
}
.block-wrap.block-style-3 .block-items .block-item .block-card .item-header .item-icon i {
  font-size: 56px;
}
.block-wrap.block-style-3 .block-items .block-item .block-card .item-header .item-title {
  text-align: center;
  padding-inline: 24px;
}
.block-wrap.block-style-3 .block-items .block-item .block-card .item-header .item-title h5 {
  color: #61C01A;
  text-transform: capitalize;
  margin-bottom: 0px;
  max-width: 100%;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  max-height: 2.8em;
  min-height: 2.8em;
}
.block-wrap.block-style-3 .block-items .block-item .block-card .item-content {
  flex-grow: 1;
  padding-block: 12px 28px;
  padding-inline: 12px;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 120px;
}
@media only screen and (min-width: 768px) {
  .block-wrap.block-style-3 .block-items .block-item .block-card .item-content {
    min-height: 150px;
  }
}
.block-wrap.block-style-3 .block-items .block-item:hover {
  transform: translateY(-8px);
  transition: 0.4s;
}
.block-wrap.block-style-4 .block-main-header {
  width: 100%;
  margin-inline: auto;
  text-align: center;
  padding-bottom: 36px;
}
@media only screen and (min-width: 768px) {
  .block-wrap.block-style-4 .block-main-header {
    width: 80%;
  }
}
@media only screen and (min-width: 1200px) {
  .block-wrap.block-style-4 .block-main-header {
    width: 60%;
  }
}
.block-wrap.block-style-4 .block-main-header h3 {
  font-weight: 500;
}
.block-wrap.block-style-4 .block-main-header h3 strong {
  font-weight: 700;
  text-transform: capitalize;
}
.block-wrap.block-style-4 .block-items .block-item .block-card {
  border: 2px solid #201751;
  border-radius: 8px;
  padding: 16px 12px;
}
.block-wrap.block-style-4 .block-items .block-item .block-card .item-title h5 {
  margin-bottom: 4px;
}
.block-wrap.block-style-4 .block-items .block-item .block-card .item-content article ol {
  list-style: none;
  counter-reset: custom-counter;
}
.block-wrap.block-style-4 .block-items .block-item .block-card .item-content article ol li {
  counter-increment: custom-counter;
  position: relative;
  padding-inline-start: 36px;
  margin-bottom: 8px;
}
.block-wrap.block-style-4 .block-items .block-item .block-card .item-content article ol li:last-child {
  margin-bottom: 0px;
}
.block-wrap.block-style-4 .block-items .block-item .block-card .item-content article ol li::before {
  content: counter(custom-counter);
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  transform: translateY(5%);
  min-width: 28px;
  width: auto;
  max-width: 28px;
  height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.25);
  color: #201751;
  font-weight: bold;
  border-radius: 4px;
}
.block-wrap.block-style-5 .block-main-header {
  text-align: center;
}
.block-wrap.block-style-5 .block-main-header h4 {
  width: 100%;
  text-align: start;
  margin-block: auto;
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  .block-wrap.block-style-5 .block-main-header h4 {
    width: 80%;
  }
}
@media only screen and (min-width: 992px) {
  .block-wrap.block-style-5 .block-main-header h4 {
    width: 60%;
  }
}
.block-wrap.block-style-5 .block-main-header h4 {
  font-weight: 500;
}
.block-wrap.block-style-5 .block-main-header h4 strong {
  font-weight: 700;
  text-transform: capitalize;
}
.block-wrap.block-style-5 .block-items .block-item {
  position: relative;
  background-color: #201751;
  border-radius: 20px;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-bottom: 12px;
}
.block-wrap.block-style-5 .block-items .block-item .block-card {
  border: 0px none;
  box-shadow: initial;
  padding: 24px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  min-height: 100%;
  height: auto;
}
.block-wrap.block-style-5 .block-items .block-item .block-card .item-header {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  word-wrap: break-word;
  min-width: 100%;
  width: auto;
  line-height: 1.6;
}
.block-wrap.block-style-5 .block-items .block-item .block-card .item-header .item-icon {
  display: inline-block;
  margin-inline-end: 16px;
  color: #61C01A;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.block-wrap.block-style-5 .block-items .block-item .block-card .item-header .item-icon i {
  font-size: 36px;
}
.block-wrap.block-style-5 .block-items .block-item .block-card .item-header .item-title {
  word-wrap: break-word;
  line-height: 1.6;
}
.block-wrap.block-style-5 .block-items .block-item .block-card .item-header .item-title h5 {
  color: #FFF;
  text-transform: capitalize;
  margin-bottom: 0px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.block-wrap.block-style-5 .block-items .block-item .block-card .item-content {
  flex-grow: 1;
  padding-block: 20px;
  padding-inline: 12px;
}
.block-wrap.block-style-5 .block-items .block-item .block-card .item-content * {
  color: #FFF;
}
.block-wrap.block-style-5 .block-items .block-item .block-card:after {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 0;
  border-radius: 20px;
  content: "";
  z-index: -1;
  background-color: #61C01A;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.block-wrap.block-style-5 .block-items .block-item .block-card:hover:after {
  height: 100%;
}
.block-wrap.block-style-5 .block-items .block-item .block-card:hover .item-header .item-icon {
  color: #FFF;
}
.block-wrap.block-style-5 .block-items .block-item .block-card:hover .item-header .item-title h5 {
  color: #FFF;
}
.block-wrap.block-style-6 .block-one-item-slide.owl-carousel .owl-stage {
  display: flex;
}
.block-wrap.block-style-6 .block-one-item-slide.owl-carousel .owl-stage .owl-item {
  display: flex;
}
.block-wrap.block-style-6 .block-one-item-slide.owl-carousel .owl-dots {
  text-align: center;
}
.block-wrap.block-style-6 .block-item .block-card {
  margin: 0 0 24px;
  padding: 24px 24px 20px;
  position: relative;
  background-color: #FFF;
  z-index: 1;
  border-radius: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.block-wrap.block-style-6 .block-item .block-card .item-header {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  margin-bottom: 12px;
}
.block-wrap.block-style-6 .block-item .block-card .item-header .item-icon {
  overflow: visible;
  width: 55px;
  height: 55px;
  background: transparent;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-wrap.block-style-6 .block-item .block-card .item-header .item-icon i {
  color: #FFF;
  font-size: 36px;
}
.block-wrap.block-style-6 .block-item .block-card .item-header .item-icon:before {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #201751;
  border-radius: 8px;
  z-index: -1;
}
.block-wrap.block-style-6 .block-item .block-card .item-header .item-icon:after {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  content: "";
  width: 100%;
  height: 0;
  background-color: #FFF;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
  border-radius: 8px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.block-wrap.block-style-6 .block-item .block-card .item-header .item-title {
  margin-inline-start: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  vertical-align: middle;
}
.block-wrap.block-style-6 .block-item .block-card .item-header .item-title h1 {
  color: #201751;
  margin-bottom: 0px;
}
.block-wrap.block-style-6 .block-item .block-card .item-content * {
  color: #201751 !important;
}
.block-wrap.block-style-6 .block-item .block-card .item-content article {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.block-wrap.block-style-6 .block-item .block-card:after {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 0;
  border-radius: 4px;
  content: "";
  z-index: -1;
  background-color: #61C01A;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.block-wrap.block-style-6 .block-item .block-card:hover .item-header .item-icon i {
  color: #61C01A;
  z-index: 1000;
}
.block-wrap.block-style-6 .block-item .block-card:hover .item-header .item-icon:after {
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.block-wrap.block-style-6 .block-item .block-card:hover:after {
  height: 100%;
}
.block-wrap.block-style-6 .block-item .block-card:hover .item-title h1 {
  color: #FFF;
}
.block-wrap.block-style-6 .block-item .block-card:hover .item-content * {
  color: #FFF !important;
}
.block-wrap.block-style-6 .block-item .block-card:hover .item-content article li:before, .block-wrap.block-style-6 .block-item .block-card:hover .item-content article a {
  color: #FFF !important;
}
.block-wrap.block-style-7 {
  background-color: #201751;
}
.block-wrap.block-style-7 .block-main-header h1,
.block-wrap.block-style-7 .block-main-header h2,
.block-wrap.block-style-7 .block-main-header h3,
.block-wrap.block-style-7 .block-main-header h4,
.block-wrap.block-style-7 .block-main-header h5,
.block-wrap.block-style-7 .block-main-header h6 {
  color: #FFF;
}
.block-wrap.block-style-7 .row {
  row-gap: 16px;
}
.block-wrap.block-style-7 .block-card h3 {
  font-size: 20px;
}
.block-wrap.block-style-7 .block-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex: 1 1 auto;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 24px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  height: auto;
  min-height: 100%;
}
.block-wrap.block-style-7 .block-card:after {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 0;
  border-radius: 4px;
  content: "";
  z-index: -1;
  background-color: #FFF;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.block-wrap.block-style-7 .block-card .block-icon {
  width: 80px;
  height: 80px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  position: relative;
  top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.block-wrap.block-style-7 .block-card .block-icon i {
  font-size: 40px;
  line-height: 0.8;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.block-wrap.block-style-7 .block-card .block-icon:after, .block-wrap.block-style-7 .block-card .block-icon:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.block-wrap.block-style-7 .block-card .block-icon:before {
  top: 10px;
  inset-inline-start: -4px;
  -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;
}
.block-wrap.block-style-7 .block-card .block-icon:after {
  bottom: 10px;
  inset-inline-end: -4px;
}
.block-wrap.block-style-7 .block-card .block-info {
  width: calc(100% - 105px);
  margin-inline-start: 25px;
}
.block-wrap.block-style-7 .block-card .block-info h3 {
  color: #FFF;
  margin-bottom: 12px;
}
.block-wrap.block-style-7 .block-card .block-info h3 a {
  color: #FFF;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.block-wrap.block-style-7 .block-card .block-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.block-wrap.block-style-7 .block-card:hover:after {
  height: 100%;
}
.block-wrap.block-style-7 .block-card:hover .block-info h3 {
  color: #201751;
}
.block-wrap.block-style-7 .block-card:hover .block-info h3 a {
  color: #201751;
}
.block-wrap.block-style-7 .block-card:hover .block-info p {
  color: rgb(28.8, 20.7, 72.9);
}
.block-wrap.block-style-7 .block-card:hover .block-icon {
  border: 1px solid rgba(97, 192, 26, 0.8);
}
.block-wrap.block-style-7 .block-card:hover .block-icon i {
  color: #61C01A;
}
.block-wrap.block-style-7 .block-card:hover .block-icon:after, .block-wrap.block-style-7 .block-card:hover .block-icon:before {
  background-color: #61C01A;
}
.block-wrap.block-style-8 {
  position: relative;
  z-index: 1;
}
.block-wrap.block-style-8 .block-header {
  color: #201751;
  margin-bottom: 24px;
  text-transform: capitalize;
}
.block-wrap.block-style-8 .block-text h1, .block-wrap.block-style-8 .block-text h2, .block-wrap.block-style-8 .block-text h3, .block-wrap.block-style-8 .block-text h4, .block-wrap.block-style-8 .block-text h5, .block-wrap.block-style-8 .block-text h6 {
  color: rgb(30.4, 21.85, 76.95);
  margin-bottom: 8px;
  text-transform: capitalize;
}
.block-wrap.block-style-8 .block-text h1 {
  font-size: 30px;
}
.block-wrap.block-style-8 .block-text h2 {
  font-size: 28px;
}
.block-wrap.block-style-8 .block-text h3 {
  font-size: 26px;
}
.block-wrap.block-style-8 .block-text h4 {
  font-size: 24px;
}
.block-wrap.block-style-8 .block-text h5 {
  font-size: 22px;
}
.block-wrap.block-style-8 .block-text h6 {
  font-size: 20px;
}
.block-wrap.block-style-8 .block-text p {
  color: rgb(28.8, 20.7, 72.9);
  font-weight: 400;
  font-size: 16px;
  margin: 0px 0px 8px;
}
.block-wrap.block-style-8 .block-text p::first-letter {
  text-transform: uppercase;
}
.block-wrap.block-style-8 .block-text a {
  color: rgb(98.9, 92.6, 133.2);
}
.block-wrap.block-style-8 .block-text a:hover {
  color: #201751;
}
.block-wrap.block-style-8 .block-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 28px;
}
.block-wrap.block-style-8 .block-text ul li {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  color: rgb(28.8, 20.7, 72.9);
  line-height: 1.6;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.block-wrap.block-style-8 .block-text ul li:last-child {
  margin-bottom: 0;
}
.block-wrap.block-style-8 .block-text 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";
  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);
  color: #61C01A;
  padding-top: 0px;
}
.block-wrap.block-style-8 .block-img {
  width: auto;
  max-width: min(100%, 400px);
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}
.block-wrap.block-style-8 .block-img .item-img {
  width: 100%;
  max-width: 400px;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}
.block-wrap.block-style-8.flip-block .row {
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .block-wrap.block-style-8.flip-block .row:nth-of-type(even) {
    display: flex;
  }
  .block-wrap.block-style-8.flip-block .row:nth-of-type(even) > .col-lg-6:first-child {
    order: 2;
  }
  .block-wrap.block-style-8.flip-block .row:nth-of-type(even) > .col-lg-6:last-child {
    order: 1;
  }
}
@media only screen and (max-width: 767.98px) {
  .block-wrap.block-style-8 .block-header {
    margin-bottom: 12px;
  }
  .block-wrap.block-style-8 .block-text h1, .block-wrap.block-style-8 .block-text h2, .block-wrap.block-style-8 .block-text h3, .block-wrap.block-style-8 .block-text h4, .block-wrap.block-style-8 .block-text h5, .block-wrap.block-style-8 .block-text h6 {
    margin-bottom: 4px;
  }
  .block-wrap.block-style-8 .block-text h1 {
    font-size: 28px;
  }
  .block-wrap.block-style-8 .block-text h2 {
    font-size: 24px;
  }
  .block-wrap.block-style-8 .block-text h3 {
    font-size: 22px;
  }
  .block-wrap.block-style-8 .block-text h4 {
    font-size: 20px;
  }
  .block-wrap.block-style-8 .block-text h5 {
    font-size: 18px;
  }
  .block-wrap.block-style-8 .block-text h6 {
    font-size: 16px;
  }
  .block-wrap.block-style-8 .block-text p {
    font-size: 14px;
    margin: 0px 0px 4px;
  }
  .block-wrap.block-style-8 .block-text a {
    font-size: 14px;
  }
  .block-wrap.block-style-8 .block-text ul {
    margin-bottom: 8px;
  }
  .block-wrap.block-style-8 .block-text ul li {
    font-size: 14px;
    padding-inline-start: 0px;
    line-height: 1.4;
    margin-bottom: 4px;
  }
  .block-wrap.block-style-8 .block-text ul li:before {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
}
.block-wrap.block-style-9 .block-main-header {
  width: 100%;
  margin-inline: auto;
  text-align: center;
  padding-bottom: 36px;
}
@media only screen and (min-width: 768px) {
  .block-wrap.block-style-9 .block-main-header {
    width: 80%;
  }
}
@media only screen and (min-width: 1200px) {
  .block-wrap.block-style-9 .block-main-header {
    width: 60%;
  }
}
.block-wrap.block-style-9 .block-main-header h3 {
  font-weight: 500;
}
.block-wrap.block-style-9 .block-main-header h3 strong {
  font-weight: 700;
  text-transform: capitalize;
}
.block-wrap.block-style-9 .block-items .block-item .block-card {
  border: none;
  background: #f4f4f4;
  border-radius: 20px;
  box-shadow: inset 0px 2px 8px 4px rgba(255, 255, 255, 0.44), 0px 16px 8px -12px rgba(0, 0, 0, 0.44);
  padding: 12px;
  margin-block-end: 16px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  min-height: 100%;
  height: auto;
}
.block-wrap.block-style-9 .block-items .block-item .block-card .item-header .item-title h5 {
  color: #201751;
  margin-bottom: 8px;
}
.block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding-block-end: 8px;
}
.block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step {
  border: none;
  padding-block: 0px 20px;
  padding-inline: 8px 20px;
}
.block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step .step-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step .step-header .step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #201751;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step .step-header h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #201751;
}
.block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step .step-header h5::first-letter {
  text-transform: uppercase;
}
.block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step .step-body {
  padding-inline-start: 40px;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(28.8, 20.7, 72.9);
}
.block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step .step-body * {
  color: rgb(28.8, 20.7, 72.9);
}
.block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step .step-body p, .block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step .step-body ul {
  margin-bottom: 8px;
}
.block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step .step-body p::first-letter, .block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step .step-body li::first-letter {
  text-transform: uppercase;
}
.block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step .step-body::first-letter {
  text-transform: uppercase;
}
.block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step::before {
  content: "";
  position: absolute;
  top: 30px;
  inset-inline-start: 22px;
  width: 4px;
  height: 100%;
  background-color: rgba(32, 23, 81, 0.2);
}
.block-wrap.block-style-9 .block-items .block-item .block-card .item-content .steps .step:last-of-type::before {
  display: none;
}

.accordion-steps .block-main-header h3 {
  font-weight: 500 !important;
}
.accordion-steps .steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-block-end: 8px;
}
.accordion-steps .steps .step {
  border: 1px solid;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(32, 23, 81, 0.16);
}
.accordion-steps .steps .step .step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.accordion-steps .steps .step .step-header .step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(97, 192, 26, 0.2);
  color: #61C01A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.accordion-steps .steps .step .step-header h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #61C01A;
}
.accordion-steps .steps .step .step-header h5::first-letter {
  text-transform: uppercase;
}
.accordion-steps .steps .step .step-body {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  display: none;
  color: rgb(28.8, 20.7, 72.9);
}
.accordion-steps .steps .step .step-body p {
  margin-bottom: 8px;
}
.accordion-steps .steps .step.open {
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
  background-color: #201751;
}
.accordion-steps .steps .step.open .step-header .step-number {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFF;
}
.accordion-steps .steps .step.open .step-header h5 {
  color: #FFF;
}
.accordion-steps .steps .step.open .step-body {
  display: block;
  color: rgb(229.5, 229.5, 229.5);
}
.accordion-steps .steps .step.open .step-body p {
  color: rgb(229.5, 229.5, 229.5);
}
.accordion-steps .steps .step.open .step-body .video-btn .play-video .video-title {
  color: rgb(229.5, 229.5, 229.5);
}

.vertical-steps .block-main-header h3 {
  font-weight: 600 !important;
  text-transform: uppercase;
}
.vertical-steps .steps {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding-block-end: 8px;
}
.vertical-steps .steps .step {
  border: none;
  padding-block: 0px 20px;
  padding-inline: 20px;
}
.vertical-steps .steps .step .step-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vertical-steps .steps .step .step-header .step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #201751;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.vertical-steps .steps .step .step-header h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #201751;
}
.vertical-steps .steps .step .step-header h5::first-letter {
  text-transform: uppercase;
}
.vertical-steps .steps .step .step-body {
  margin-top: 8px;
  padding-inline-start: 40px;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(28.8, 20.7, 72.9);
}
.vertical-steps .steps .step .step-body * {
  color: rgb(28.8, 20.7, 72.9);
}
.vertical-steps .steps .step .step-body p, .vertical-steps .steps .step .step-body ul {
  margin-bottom: 8px;
}
.vertical-steps .steps .step .step-body p::first-letter, .vertical-steps .steps .step .step-body li::first-letter {
  text-transform: uppercase;
}
.vertical-steps .steps .step .step-body::first-letter {
  text-transform: uppercase;
}
.vertical-steps .steps .step::before {
  content: "";
  position: absolute;
  top: 30px;
  inset-inline-start: 34px;
  width: 4px;
  height: 100%;
  background-color: rgba(32, 23, 81, 0.2);
}
.vertical-steps .steps .step:last-of-type::before {
  display: none;
}

.block-wrap2 {
  --block-gap: 16px;
  padding-block-end: var(--block-gap);
  place-items: center;
}
.block-wrap2 .block-items {
  display: grid;
  gap: var(--block-gap);
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
}
.block-wrap2 .block-items.blocks-one {
  grid-template-columns: 1fr;
}
.block-wrap2 .block-items.blocks-two, .block-wrap2 .block-items.blocks-three, .block-wrap2 .block-items.blocks-four {
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .block-wrap2 .block-items.blocks-two, .block-wrap2 .block-items.blocks-three, .block-wrap2 .block-items.blocks-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .block-wrap2 .block-items.blocks-two, .block-wrap2 .block-items.blocks-three, .block-wrap2 .block-items.blocks-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .block-wrap2 .block-items.blocks-one {
    grid-template-columns: 1fr;
  }
  .block-wrap2 .block-items.blocks-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .block-wrap2 .block-items.blocks-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .block-wrap2 .block-items.blocks-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.block-wrap2 .block-items.blocks-start {
  justify-content: start;
}
.block-wrap2 .block-items.blocks-center {
  justify-content: center;
}
.block-wrap2 .block-items .block-item {
  min-height: 100%;
  height: 350px;
  display: flex;
}
.block-wrap2 .block-items .block-item .block-card {
  border-radius: 20px;
  box-shadow: inset 0px 1px 2px rgba(255, 255, 255, 0.3), 0px 1px 2px rgba(32, 23, 81, 0.3), 0px 16px 8px -12px rgba(32, 23, 81, 0.45);
  padding: 12px;
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  min-height: 100%;
  height: auto;
  width: 100%;
}

.trustpilot-section .tp-content .tp-title {
  padding-bottom: 16px;
  color: #201751;
  font-weight: 700;
  width: 100%;
}
.trustpilot-section .tp-content .tp-title::first-letter {
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .trustpilot-section .tp-content .tp-title {
    width: 72%;
  }
}
.trustpilot-section .tp-content .tp-details {
  color: #201751 !important;
  font-size: 20px;
  line-height: 1.4 !important;
}
@media only screen and (min-width: 768px) {
  .trustpilot-section .tp-content .tp-details {
    font-size: 24px;
  }
}
.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;
}
.trustpilot-section .tp-rating-card .tp-rating-header {
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.trustpilot-section .tp-rating-card .tp-rating-header .tp-rating-sub {
  font-size: 16px;
  opacity: 0.8;
}
.trustpilot-section .tp-rating-card .tp-rating-stars {
  color: #61C01A;
  font-size: 22px;
  letter-spacing: 1px;
  margin: 10px 0;
}
.trustpilot-section .tp-rating-card .tp-rating-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  opacity: 0.9;
}
.trustpilot-section .tp-rating-card .tp-rating-meta .tp-rating-count {
  font-size: 13px;
  opacity: 0.75;
}
.trustpilot-section .tp-rating-card .tp-rating-footer {
  margin-top: 12px;
}
.trustpilot-section .tp-rating-card .tp-rating-footer img {
  width: 72%;
  height: auto;
}
.trustpilot-section .tp-rating-card .tp-rating-footer img.light-logo {
  display: block;
}
.trustpilot-section .tp-rating-card .tp-rating-footer img.dark-logo {
  display: none;
}
.trustpilot-section .tp-reviews-slider.owl-carousel .owl-stage {
  display: flex;
  padding-block-end: 16px;
}
.trustpilot-section .tp-reviews-slider.owl-carousel .owl-stage .owl-item {
  display: flex;
}
.trustpilot-section .tp-review-box {
  background: #f4f4f4;
  border-radius: 20px;
  padding: 20px;
  margin-block-end: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0px 2px 8px 4px rgba(255, 255, 255, 0.44), 0px 16px 8px -12px rgba(0, 0, 0, 0.44);
  height: auto;
  min-height: 100%;
  width: auto;
  min-width: 100%;
}
.trustpilot-section .tp-review-box .tp-review-stars {
  color: #61C01A;
  font-size: 20px;
  margin-bottom: 8px;
}
.trustpilot-section .tp-review-box .tp-review-text {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 12px;
  flex-grow: 1;
  justify-content: start;
  color: #201751 !important;
}
.trustpilot-section .tp-review-box .tp-review-text * {
  color: #201751 !important;
}
.trustpilot-section .tp-review-box .tp-review-user {
  font-size: 14px;
  color: rgba(32, 23, 81, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sidebar .sidebar-widget {
  margin: 0 0 30px;
  position: relative;
  z-index: 1;
  padding: 25px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
}
.sidebar .sidebar-widget.style2 {
  background: transparent;
  box-shadow: 0px 0px 25px rgba(85, 85, 85, 0.1);
}
.sidebar .sidebar-widget.style2 h4 {
  padding-bottom: 0;
}
.sidebar .sidebar-widget.style2 h4:after {
  display: none;
}
.sidebar .sidebar-widget.style3 {
  background: transparent;
  padding: 0;
}
.sidebar .sidebar-widget.style3 h4 {
  padding-bottom: 0;
  color: #FFF;
}
.sidebar .sidebar-widget.style3 h4:after {
  display: none;
}
.sidebar .sidebar-widget.style4 {
  background: transparent;
  padding: 0;
}
.sidebar .sidebar-widget h4 {
  margin: 0 0 25px;
  font-size: 22px;
  position: relative;
  line-height: 1;
  position: relative;
  padding-bottom: 20px;
  color: #201751;
}
.sidebar .sidebar-widget h4:after {
  position: absolute;
  bottom: 0px;
  inset-inline-start: 0;
  width: 25%;
  height: 1px;
  content: "";
  background: #201751;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.sidebar .sidebar-widget:last-child {
  margin: 0;
}

.search-box {
  position: relative;
}
.search-box .form-group {
  position: relative;
}
.search-box .form-group input {
  width: 100%;
  height: 54px;
  background: #FFF;
  color: #201751;
  font-size: 16px;
  line-height: 20px;
  padding-block: 8px;
  padding-inline: 20px 60px;
  border-radius: 4px;
  border: 1px solid #61C01A;
}
.search-box .form-group input:focus {
  color: #61C01A;
  box-shadow: 1px 2px 4px 0px #61C01A;
}
.search-box .form-group button {
  position: absolute;
  top: 13px;
  inset-inline-end: 0;
  padding: 0 20px;
  border: none;
  border-radius: 0;
  text-align: center;
  background: transparent;
}
.search-box .form-group button i {
  color: #61C01A;
  top: 4px;
  inset-inline-start: 1px;
  font-size: 20px;
  line-height: 20px;
  position: relative;
}
.search-box .form-group .invalid-feedback {
  font-size: 16px;
  color: var(--bs-danger);
}

.category-box ul li {
  position: relative;
  padding-inline-start: 24px;
}
.category-box ul li:first-child a {
  padding-top: 0;
}
.category-box ul li:first-child a i {
  top: 8px;
}
.category-box ul li:last-child a {
  border-bottom: none;
  padding-bottom: 0;
}
.category-box ul li a {
  font-weight: 400;
  padding-block: 8px;
  padding-inline: 10px 0px;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  color: #000;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.category-box ul li a i {
  position: absolute;
  top: 16px;
  inset-inline-start: 0;
  font-size: 15px;
  line-height: 0.8;
  color: #61C01A;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  transform: rotate(0deg);
}
.category-box ul li a span {
  float: inline-end;
  font-weight: 400;
  margin-inline-start: 4px;
  font-size: 16px;
  color: #000;
}
.category-box ul li a:hover {
  color: #61C01A;
  padding-inline-start: 10px;
}
.category-box ul li a:hover i {
  color: #61C01A;
}
.category-box ul li a.active {
  color: #61C01A;
  cursor: default;
  pointer-events: none;
}
.category-box ul li a.active i {
  color: #61C01A;
}
.category-box ul li a.active span {
  color: #61C01A;
}
.category-box.style2 ul li {
  margin: 0 0 15px;
  padding-inline-start: 0;
}
.category-box.style2 ul li:last-child {
  margin-bottom: 0;
}
.category-box.style2 ul li a {
  display: block;
  background: #f9f9f9;
  padding: 17px 18px 18px;
  border-radius: 4px;
  color: #666666;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.category-box.style2 ul li a span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f9f9f9;
  opacity: 1;
  float: inline-end;
  text-align: center;
  position: relative;
  top: -3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.category-box.style2 ul li a span i {
  position: relative;
  font-size: 10px;
  font-weight: 600;
  line-height: 0.8;
  color: #000;
  margin: 0 auto;
  top: 0;
}
.category-box.style2 ul li a:hover {
  background: #61C01A;
  color: #FFF;
}
.category-box.style2 ul li a:hover span {
  background: #FFF;
}
.category-box.style2 ul li a:hover span i {
  color: #61C01A;
  inset-inline-start: 0;
}

.project-info-widget {
  background-image: url(../img/contact-widget-bg.jpg);
  position: relative;
  z-index: 1;
  padding: 25px;
}
.project-info-widget .overlay {
  z-index: -1;
}
.project-info-widget .project-info-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.project-info-widget .project-info-list li:last-child {
  margin-bottom: 0;
}
.project-info-widget .project-info-list li p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  color: #FFF;
}
.project-info-widget .project-info-list li p i {
  color: #61C01A;
  position: relative;
  top: 2px;
  font-size: 17px;
  font-weight: 500;
  margin-inline-end: 10px;
}
.project-info-widget .project-info-list li span {
  color: #FFF;
}
.project-info-widget .project-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
  margin: 20px 0 0;
}
.project-info-widget .project-share p {
  width: 120px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
}
.project-info-widget .project-share p i {
  color: #61C01A;
  position: relative;
  top: 2px;
  margin-inline-end: 7px;
}
.project-info-widget .project-share ul {
  width: calc(100% - 120px);
  text-align: end;
}
.project-info-widget .project-share ul li {
  display: inline-block;
}

.schedule-widget ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 15px;
}
.schedule-widget ul li:last-child {
  margin: 0;
}
.schedule-widget ul li h6 {
  font-size: 16px;
  line-height: 1.1;
  margin: 0;
  font-weight: 500;
}
.schedule-widget ul li p {
  margin: 0;
  font-size: 15px;
}

.contact-widget-form {
  background-image: url(../img/contact-widget-bg.jpg);
  position: relative;
  z-index: 1;
  padding: 25px;
}
.contact-widget-form .overlay {
  z-index: -1;
}
.contact-widget-form form .form-group {
  margin-bottom: 24px;
}
.contact-widget-form form .form-group input, .contact-widget-form form .form-group textarea {
  width: 100%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 20px;
  color: #FFF;
}
.contact-widget-form form .form-group input::placeholder, .contact-widget-form form .form-group textarea::placeholder {
  color: #FFF;
  opacity: 0.8;
}
.contact-widget-form form .form-group input {
  height: 50px;
}
.contact-widget-form form .form-group textarea {
  height: 100px;
  resize: none;
}

.tag-list ul {
  margin-top: -12px;
}
.tag-list ul li {
  display: inline-block;
  margin-block: 12px 0;
  margin-inline: 0 8px;
}
.tag-list ul li a {
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  padding: 9px 15px 11px;
  color: rgba(0, 0, 0, 0.5);
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tag-list ul li a:hover {
  background-color: #FFF;
  color: #61C01A;
  border-color: transparent;
}
.tag-list ul li a.active {
  pointer-events: none;
  cursor: default;
  background-color: #FFF;
  color: #61C01A;
  border-color: #61C01A;
}
.tag-list.style2 li a {
  box-shadow: none;
  padding: 0;
}
.tag-list.style2 li a:hover {
  background: transparent;
}
.tag-list.style3 li a {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  padding: 10px 12px;
  border: none;
}

.pp-post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 20px;
}
.pp-post-item .pp-post-img {
  width: 85px;
  border-radius: 4px;
}
.pp-post-item .pp-post-img img {
  border-radius: 4px;
  height: 100%;
  width: 100%;
  max-width: 82px;
  max-height: 82px;
  object-fit: cover;
}
.pp-post-item .pp-post-info {
  width: calc(100% - 100px);
  margin-inline-start: 15px;
  margin-top: 2px;
}
.pp-post-item .pp-post-info h6 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 0;
}
.pp-post-item .pp-post-info h6 a {
  color: #000;
}
.pp-post-item .pp-post-info span {
  font-size: 14px;
  line-height: 1;
  display: block;
  position: relative;
  padding-inline-start: 22px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 12px;
}
.pp-post-item .pp-post-info span i {
  position: absolute;
  top: 1px;
  inset-inline-start: 0;
  font-size: 13px;
  line-height: 0.8;
  color: #61C01A;
}
.pp-post-item:last-child {
  margin: 0;
}
.pp-post-item:hover .pp-post-info h6 a {
  color: #61C01A;
}

.header-wrap {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header-wrap .header-top {
  box-sizing: border-box;
  display: none;
  padding-block: 12px;
  padding-inline: 0px;
  background-color: #FFF;
}
.header-wrap .header-top .header-top-info .contact-info li {
  display: inline-block;
  margin-inline-end: 25px;
}
.header-wrap .header-top .header-top-info .contact-info li:last-child {
  margin-inline-end: 0;
}
.header-wrap .header-top .header-top-info .contact-info li i {
  font-size: 14px;
  line-height: 0.8;
  color: #61C01A;
  position: relative;
  top: 2px;
  margin-inline-end: 6px;
}
.header-wrap .header-top .header-top-info .contact-info li a {
  color: rgb(98.9, 92.6, 133.2);
  font-size: 14px;
  display: inline-block;
  margin-bottom: 0;
  direction: ltr;
}
.header-wrap .header-top .header-top-info .contact-info li a:hover {
  color: #61C01A;
}
.header-wrap .header-top .header-top-info .contact-info li p {
  color: rgb(30.4, 21.85, 76.95);
  font-size: 14px;
  display: inline-block;
  margin-bottom: 0;
}
.header-wrap .header-top .header-top-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.header-wrap .header-top .header-top-action .header-top-menu li {
  display: block;
  padding-block-end: 4px;
  position: relative;
}
.header-wrap .header-top .header-top-action .header-top-menu li:first-child {
  padding-inline-start: 0;
  margin-inline-start: 0;
}
.header-wrap .header-top .header-top-action .header-top-menu li a {
  font-size: 14px;
  color: rgb(98.9, 92.6, 133.2);
  font-weight: 500;
}
.header-wrap .header-top .header-top-action .header-top-menu li a:hover {
  color: #61C01A;
}
.header-wrap .header-top .header-top-action .lang-btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: transparent;
  outline: 0;
  border: 0px;
  gap: 4px;
  padding: 0px;
  margin-top: 16px;
}
.header-wrap .header-top .header-top-action .lang-btn img.site-country {
  width: 24px;
  height: 24px;
  object-fit: fill;
  border-radius: 50%;
}
.header-wrap .header-top .header-top-action .lang-btn span.site-lang {
  color: #201751;
  font-size: 16px;
  font-weight: 500;
}
.header-wrap .header-top .header-top-action .lang-btn:hover span.site-lang {
  color: #61C01A;
}
.header-wrap .header-bottom {
  background: #FFF;
  border-bottom: 1px solid rgb(25.6, 18.4, 64.8);
  box-shadow: 0 15px 20px rgba(32, 23, 81, 0.09);
}
.header-wrap .header-bottom .navbar .navbar-brand img {
  width: 120px;
  height: auto;
}
.header-wrap .header-bottom .navbar .navbar-brand img.logo-dark {
  display: none;
}
.header-wrap .header-bottom .navbar .navbar-nav .nav-item {
  text-align: start;
}
.header-wrap .header-bottom .navbar .navbar-nav .nav-item:hover > a, .header-wrap .header-bottom .navbar .navbar-nav .nav-item:hover .menu-expand i {
  color: #61C01A;
}
.header-wrap .header-bottom .navbar .navbar-nav .nav-item > a {
  color: #201751;
}
.header-wrap .header-bottom .navbar .navbar-nav .nav-item > a.active, .header-wrap .header-bottom .navbar .navbar-nav .nav-item > a:hover {
  color: #61C01A;
}
.header-wrap .header-bottom .navbar .navbar-nav .nav-item.lang-flag {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item.lang-flag {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0px 12px;
  }
}
.header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li {
  text-align: start;
}
.header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: rgb(98.9, 92.6, 133.2);
}
.header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a.active, .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: #61C01A;
}
.header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  pointer-events: none;
  cursor: default;
}
.header-wrap .header-bottom .navbar .navbar-nav > .nav-item > a:after {
  background: #61C01A;
}
.header-wrap .header-bottom .navbar .others-options .searchbox {
  position: relative;
  margin-inline-start: 0px; /*36px;*/
  margin-inline-end: 12px;
}
.header-wrap .header-bottom .navbar .others-options .searchbox input {
  color: #61C01A;
  width: 200px;
  padding: 8px;
  padding-block: 8px 7px;
  border: none;
  border-bottom: 2px solid #61C01A;
  border-radius: 0px;
  font-size: 16px;
  line-height: 23px;
  background-color: transparent;
}
.header-wrap .header-bottom .navbar .others-options .searchbox input::-webkit-input-placeholder {
  color: #61C01A;
}
.header-wrap .header-bottom .navbar .others-options .searchbox input:-moz-placeholder {
  color: #61C01A;
}
.header-wrap .header-bottom .navbar .others-options .searchbox input::-moz-placeholder {
  color: #61C01A;
}
.header-wrap .header-bottom .navbar .others-options .searchbox input:-ms-input-placeholder {
  color: #61C01A;
}
.header-wrap .header-bottom .navbar .others-options .searchbox button {
  position: absolute;
  top: 6px;
  inset-inline-end: 0;
  background-color: transparent;
  width: auto;
  height: auto;
  border: none;
}
.header-wrap .header-bottom .navbar .others-options .searchbox button i {
  color: #61C01A;
  position: relative;
  top: 3px;
}
.header-wrap .header-bottom .navbar .others-options .header-btn .btn.style1 {
  font-size: 16px;
  line-height: 25px;
  color: #FFF;
  padding-block: 7px;
  padding-inline: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-inline-end: 8px;
}
.header-wrap .header-bottom .navbar .others-options .header-btn .btn.style1:last-child {
  margin-inline-end: 0px;
}
.header-wrap.sticky {
  position: fixed;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  width: 100%;
  box-shadow: 0 5px 15px rgba(32, 23, 81, 0.1);
  -webkit-box-shadow: 0 5px 15px rgba(32, 23, 81, 0.1);
  -moz-box-shadow: 0 5px 15px rgba(32, 23, 81, 0.1);
}
.header-wrap.sticky .header-top {
  display: none;
}
.header-wrap.sticky .header-bottom {
  background-color: rgb(49.84, 41.56, 94.92);
}
.header-wrap.sticky .header-bottom .navbar .navbar-brand img.logo-light {
  display: none;
}
.header-wrap.sticky .header-bottom .navbar .navbar-brand img.logo-dark {
  display: block;
}
.header-wrap.sticky .header-bottom .navbar .navbar-nav .nav-item a {
  color: #201751;
}
.header-wrap.sticky .header-bottom .navbar .navbar-nav .nav-item a.active, .header-wrap.sticky .header-bottom .navbar .navbar-nav .nav-item a:hover {
  color: #61C01A;
}
.header-wrap.sticky .header-bottom .navbar .others-options .searchbox input {
  border-radius: 4px;
  border-bottom: 0;
  background-color: #FFF;
  color: #201751;
}
.header-wrap.sticky .header-bottom .navbar .others-options .searchbox input::-webkit-input-placeholder {
  color: #201751;
}
.header-wrap.sticky .header-bottom .navbar .others-options .searchbox input:-moz-placeholder {
  color: #201751;
}
.header-wrap.sticky .header-bottom .navbar .others-options .searchbox input::-moz-placeholder {
  color: #201751;
}
.header-wrap.sticky .header-bottom .navbar .others-options .searchbox input:-ms-input-placeholder {
  color: #201751;
}
.header-wrap.sticky .header-bottom .navbar .others-options .searchbox input {
  line-height: 25px;
  padding-block: 7px;
}
.header-wrap.sticky .header-bottom .navbar .others-options .searchbox button i {
  color: #201751;
}
.header-wrap.sticky .header-bottom .navbar .others-options .searchbox button i::before {
  font-weight: 600 !important;
}
.header-wrap.sticky .header-bottom .navbar .others-options .header-btn .btn.style1 {
  background-color: #FFF;
  color: #201751;
}
.header-wrap.sticky .header-bottom .navbar .others-options .header-btn .btn.style1:hover {
  color: #FFF;
}
.header-wrap.sticky .header-bottom .navbar .others-options .header-btn .btn.style1:hover::after {
  background-color: #61C01A;
}

.search-area {
  position: fixed;
  top: 0;
  width: 100%;
  height: 35vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  visibility: hidden;
  background: rgba(97, 192, 26, 0.92);
  opacity: 0;
  z-index: 990;
  transform: translateY(-100%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.search-area.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.search-area .close-searchbox {
  position: absolute;
  top: 15px;
  inset-inline-end: 10px;
  background: transparent;
  border: none;
}
.search-area .close-searchbox i {
  color: #FFF;
  font-size: 35px;
  font-weight: 300;
}
.search-area form {
  width: 100%;
}
.search-area .input-group {
  position: relative;
  width: 100%;
}
.search-area .input-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #FFF;
  font-size: 16px;
  font-weight: 500 !important;
  padding: 8px;
  color: #FFF;
}
.search-area .input-group input::placeholder {
  color: #FFF;
  opacity: 1;
}
.search-area .input-group button {
  position: absolute;
  bottom: 5px;
  inset-inline-end: 0;
  background-color: transparent;
  width: auto;
  height: auto;
  border: none;
}
.search-area .input-group button i {
  color: #FFF;
}
.search-area .input-group button i::before {
  font-size: 16px;
  font-weight: 500 !important;
}

.lang-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1040;
  display: none;
}
.lang-overlay.active {
  display: block;
}

aside.lang-panel {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  width: min(567px, 100%);
  background: rgb(246.08, 245.72, 248.04);
  z-index: 99999999;
  inset-inline-end: 0;
  transition: transform 0.4s ease-in-out;
  transform: translateX(100%);
  height: 100vh;
}
aside.lang-panel.active {
  transform: translateX(0);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.55);
}
aside.lang-panel .lang-panel-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  padding-block: 12px;
  padding-inline: 24px;
  border-bottom: 2px solid rgb(165.8, 162.2, 185.4);
}
aside.lang-panel .lang-panel-header h4.aside-title {
  color: #201751;
}
aside.lang-panel .lang-panel-header button.close-aside {
  background: transparent;
  border: none;
  cursor: pointer;
}
aside.lang-panel .lang-panel-header button.close-aside i {
  color: #201751;
  font-size: 24px;
  font-weight: 600;
}
aside.lang-panel .lang-panel-content {
  flex-grow: 1;
  overflow-y: auto;
  padding-block: 16px;
  padding-inline: 24px;
}
aside.lang-panel .lang-panel-content .form-group {
  margin-bottom: 24px;
}
aside.lang-panel .lang-panel-content .form-group label {
  margin-bottom: 16px;
  font-weight: 700;
}
aside.lang-panel .lang-panel-content .form-group .language-select {
  height: 52px;
  border-radius: 4px;
}
aside.lang-panel .lang-panel-content .form-group p {
  font-weight: 500;
}
aside.lang-panel .lang-panel-bottom {
  border-top: 2px solid rgb(165.8, 162.2, 185.4);
  padding-block: 16px;
  padding-inline: 24px;
}

/* Style for select2 */
.select2-container .select2-dropdown {
  z-index: 100000000 !important;
}

.select2-container--default .select2-selection--single {
  display: flex;
  flex-direction: row;
  height: 52px;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #201751;
  padding-inline: 2px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 52px;
  margin-inline-end: 6px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: block;
  border: none;
  font-size: 20px;
  line-height: 1;
  position: relative;
  top: 31%;
  inset-inline-start: initial;
  font-family: "remixicon";
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
  display: inline-block;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  content: "\ea4e";
  color: #201751;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border: none;
}

.select2-container--open .select2-dropdown--below {
  border-color: #201751;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #201751;
  border-radius: 4px;
  height: 40px;
}

.select2-results__option--selectable {
  color: #201751;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: rgba(32, 23, 81, 0.4);
  color: #FFF;
}

.select2-container--default .select2-results__option--selected {
  background-color: rgba(32, 23, 81, 0.9);
  color: #FFF;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #201751;
}

.select2-container .select2-selection--single .select2-selection__rendered img,
.select2-results__option img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-inline-end: 8px;
  vertical-align: middle;
}

.select2-results__option {
  padding-inline-start: 8px;
  color: #201751;
}

@media only screen and (max-width: 767.98px) {
  .header-wrap .header-top {
    position: fixed;
    top: 0;
    inset-inline-start: -100%;
    width: 100%;
    height: 100vh;
    padding: 40px 10px 10px;
    background-color: rgb(246.08, 245.72, 248.04);
    z-index: 1;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .header-wrap .header-top.open {
    inset-inline-start: 0;
  }
  .header-wrap .header-top .close-sidebar {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .header-wrap .header-top .close-sidebar i {
    color: #201751;
    font-size: 24px;
    font-weight: 600;
  }
  .header-wrap .header-top .header-top-info {
    text-align: start;
    margin-bottom: 16px;
  }
  .header-wrap .header-top .header-top-info .contact-info li {
    display: block;
    margin: 0 0 10px 0;
  }
  .header-wrap .header-top .header-top-info .contact-info li:last-child {
    margin-bottom: 0;
  }
  .header-wrap .header-top .header-top-action {
    justify-content: flex-start;
  }
  .header-wrap .header-top .header-top-action .header-top-menu {
    width: 100%;
  }
  .header-wrap .header-top .header-top-action .header-top-menu li:last-child:before {
    display: none;
  }
  .header-wrap .mobile-sidebar {
    position: relative;
    top: -3px;
    display: inline-block;
    line-height: 1;
    cursor: pointer;
  }
  .header-wrap .mobile-sidebar i {
    font-size: 24px;
    color: #61C01A;
  }
  .header-wrap.sticky {
    top: 0;
  }
  .header-wrap.sticky .header-top.open {
    display: block;
  }
  aside.lang-panel .lang-panel-content * {
    font-size: 14px !important;
  }
  aside.lang-panel .lang-panel-content .form-group {
    margin-bottom: 16px !important;
  }
  aside.lang-panel .lang-panel-content .form-group label {
    margin-bottom: 8px !important;
    font-weight: 500 !important;
  }
  aside.lang-panel .lang-panel-content .form-group .select2-container--default .select2-selection--single {
    height: 44px !important;
    font-size: 14px !important;
  }
  aside.lang-panel .lang-panel-content .form-group.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important;
  }
  aside.lang-panel .lang-panel-content .form-group.select2-container--default .select2-selection--single .select2-selection__arrow b {
    font-size: 18px !important;
    top: 25%;
  }
  aside.lang-panel .lang-panel-content .form-group .select2-container--default .select2-selection__rendered {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
  aside.lang-panel .lang-panel-content .form-group .select2-results__option {
    font-size: 14px !important;
  }
  aside.lang-panel .lang-panel-content .form-group.select2-container--default .select2-search--dropdown .select2-search__field {
    height: 36px !important;
    font-size: 14px !important;
  }
  aside.lang-panel .lang-panel-bottom * {
    font-size: 14px !important;
  }
}
@media only screen and (min-width: 768px) {
  .close-sidebar,
  .mobile-sidebar {
    display: none;
  }
  .header-wrap .header-top .header-top-action .header-top-menu li {
    display: inline-block;
    padding-inline-end: 16px;
    padding-block-end: 0px;
    position: relative;
  }
  .header-wrap .header-top .header-top-action .lang-btn {
    margin-top: 0px;
  }
  .header-wrap .header-bottom .navbar .navbar-brand img {
    width: 160px;
  }
  .header-wrap .header-bottom .search-area {
    height: 25vh;
  }
  .header-wrap .header-bottom .search-area .close-searchbox {
    top: 0;
    inset-inline-end: 0;
  }
  .header-wrap .header-bottom .search-area .input-group input {
    font-size: 16px;
    font-weight: 600 !important;
  }
  .header-wrap .header-bottom .search-area .input-group button i::before {
    font-size: 16px;
    font-weight: 600 !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .header-wrap .header-top .header-top-info {
    text-align: center;
  }
  .header-wrap .header-top .header-top-action {
    justify-content: center;
  }
  .header-wrap .header-top .header-top-info,
  .header-wrap .header-top .header-top-action {
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199.98px) {
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu {
    height: fit-content;
  }
}
@media only screen and (max-width: 1199.98px) {
  .header-wrap .header-top .header-top-info .contact-item p,
  .header-wrap .header-top .header-top-info .contact-item a {
    font-size: 16px;
    font-weight: 400;
  }
  .header-wrap .header-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-wrap .header-bottom .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-wrap .header-bottom .container .navbar .navbar-collapse {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item {
    position: relative;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item.has-dropdown .dropdown-menu {
    width: 100%;
    background-color: #FFF;
    border: none;
    padding: 0;
    position: relative;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item.has-dropdown .dropdown-menu li a {
    font-size: 14px;
    padding-inline-start: 10px;
    margin-inline-start: 10px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-transform: capitalize;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item.has-dropdown .dropdown-menu li a::before {
    position: absolute;
    top: 50%;
    inset-inline-start: 0;
    content: "";
    width: 15px;
    height: 2px;
    background-color: #61C01A;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item.has-dropdown .dropdown-menu li a.active, .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item.has-dropdown .dropdown-menu li a:hover {
    margin-inline-start: 8px;
    padding-inline-start: 22px;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item.has-dropdown .dropdown-menu li a.active:before, .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item.has-dropdown .dropdown-menu li a:hover:before {
    visibility: visible;
    opacity: 1;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item.has-dropdown .dropdown-menu .nav-item .dropdown-menu {
    margin-inline-start: 20px;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item.has-dropdown.menu-open .menu-expand i {
    color: #61C01A;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item.has-dropdown.menu-open > a.nav-link {
    color: #61C01A;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item.has-dropdown .menu-expand {
    position: absolute;
    inset-inline-end: 0;
    top: 14px;
    cursor: pointer;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item.has-dropdown .menu-expand i {
    color: #201751;
    font-size: 18px;
    line-height: 1;
    position: relative;
    top: 7px;
    display: inline-block;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item.buttons {
    text-align: start;
    padding-top: 20px;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item a {
    padding-top: 16px;
    padding-bottom: 12px;
    text-transform: capitalize;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item a i {
    display: none;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item a.btn.style1 {
    font-size: 16px;
    font-weight: 500;
    color: #FFF;
    padding-block: 8px;
    display: inline-block;
    margin-inline-end: 8px;
    text-align: center;
    min-width: 120px;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item a.btn.style1:last-child {
    margin-inline-end: 0px;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item a.btn.style1:hover {
    background-color: transparent;
    color: #FFF;
  }
  .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item:hover > a, .header-wrap .header-bottom .container .navbar .navbar-nav .nav-item:hover .menu-expand i {
    color: #61C01A;
  }
  .header-wrap .header-bottom .container .searchbtn {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0 16px;
  }
  .header-wrap .header-bottom .container .searchbtn i {
    font-size: 20px;
    line-height: 0.8;
    position: relative;
    top: -1px;
    color: #201751;
  }
  .header-wrap .header-bottom .container .mobile-menu a {
    background: #201751;
  }
  .header-wrap .header-bottom .container .mobile-menu a i {
    color: #FFF;
  }
  .header-wrap .header-bottom .container .mobile-menu a:hover {
    box-shadow: 0px 0px 12px 0px #201751;
  }
  .header-wrap.sticky .header-bottom .container .mobile-bar-wrap .lang-btn span.site-lang {
    color: #FFF;
  }
  .header-wrap.sticky .header-bottom .container .mobile-bar-wrap .searchbtn i {
    color: #FFF;
  }
  .header-wrap.sticky .header-bottom .container .mobile-bar-wrap .mobile-menu {
    margin-inline-end: 0;
  }
  .header-wrap.sticky .header-bottom .container .mobile-bar-wrap .mobile-menu a {
    background: #FFF;
  }
  .header-wrap.sticky .header-bottom .container .mobile-bar-wrap .mobile-menu a i {
    color: #201751;
  }
  .header-wrap.sticky .header-bottom .container .mobile-bar-wrap .mobile-menu a:hover {
    box-shadow: 0px 0px 12px 0px #FFF;
  }
  .mobile-bar-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
    position: relative;
    top: 4px;
  }
  .mobile-bar-wrap .lang-btn {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: transparent;
    outline: 0;
    border: 0px;
    gap: 4px;
    padding: 0px;
    position: relative;
    top: -4px;
  }
  .mobile-bar-wrap .lang-btn img.site-country {
    width: 24px;
    height: 24px;
    object-fit: fill;
    border-radius: 50%;
  }
  .mobile-bar-wrap .lang-btn span.site-lang {
    color: #201751;
    font-size: 16px;
    font-weight: 500;
  }
  .mobile-bar-wrap .lang-btn:hover span.site-lang {
    color: #61C01A;
  }
  .menu-close {
    position: absolute;
    top: 13px;
    inset-inline-end: 16px;
  }
  .menu-close i {
    color: #201751;
    font-size: 25px;
  }
  .mobile-menu {
    text-align: end;
  }
  .mobile-menu a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    background-color: #201751;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .mobile-menu a i {
    font-size: 22px;
    color: #FFF;
    margin: 0 auto;
  }
  .mobile-menu {
    display: inline-block;
    position: relative;
    top: -4px;
  }
  .mobile-top-bar {
    display: inline-block;
    margin-inline-end: 6px;
    cursor: pointer;
    position: relative;
    top: 0px;
  }
  .mobile-top-bar span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #000;
    border-radius: 20px;
    margin: 5.9px 0;
  }
  .mobile-top-bar span:nth-child(1) {
    margin-top: 0;
  }
  .mobile-top-bar span:nth-child(2) {
    width: 12px;
    margin-inline-start: 8px;
  }
  .close-header-top button {
    position: absolute;
    top: 15px;
    inset-inline-end: 20px;
    z-index: 999;
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 0;
  }
  .close-header-top button i {
    color: #000;
    font-size: 26px;
  }
  .main-menu-wrap {
    width: 100%;
    position: fixed;
    background: rgb(246.08, 245.72, 248.04);
    z-index: 999;
    top: 0;
    height: 100vh;
    transition: 0.5s;
    inset-inline-start: -100%;
    padding: 55px 20px 30px;
    overflow-y: auto;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .main-menu-wrap.open {
    inset-inline-start: 0;
  }
  .header-wrap .header-bottom .main-menu-wrap #menu > ul > li > a::after {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .menu-expand i {
    display: none;
  }
  .header-wrap .header-bottom .navbar {
    padding: 0;
  }
  .header-wrap .header-bottom .navbar .navbar-brand {
    padding-inline-end: 20px;
  }
  .header-wrap .header-bottom .navbar .navbar-nav {
    margin-inline-start: auto;
    position: relative;
    padding-inline-start: 0;
    list-style-type: none;
    margin-bottom: 0;
  }
  .header-wrap .header-bottom .navbar .navbar-nav > .nav-item {
    position: relative;
    top: 3px;
  }
  .header-wrap .header-bottom .navbar .navbar-nav > .nav-item > a:after {
    position: absolute;
    bottom: 24px;
    inset-inline-start: 0;
    content: "";
    width: 0;
    height: 2px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    background-color: #61C01A;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item {
    position: relative;
    top: 0px;
    margin: 0 10px;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item.has-dropdown {
    position: relative;
    top: -1px;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item.first-child {
    margin-inline-start: 0;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item a {
    font-weight: 500;
    padding: 30px 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    position: relative;
    text-transform: capitalize;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item a:hover i, .header-wrap .header-bottom .navbar .navbar-nav .nav-item a:focus i, .header-wrap .header-bottom .navbar .navbar-nav .nav-item a.active i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item a:hover:after, .header-wrap .header-bottom .navbar .navbar-nav .nav-item a:focus:after, .header-wrap .header-bottom .navbar .navbar-nav .nav-item a.active:after {
    visibility: visible;
    opacity: 1;
    width: 18px;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item a i {
    font-size: 18px;
    line-height: 1;
    position: relative;
    top: 1px;
    display: inline-block;
    margin-inline-start: 4px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu {
    display: block !important;
    border: none;
    top: 95px;
    inset-inline-start: -23px;
    z-index: 99;
    opacity: 0;
    width: 265px;
    padding: 0;
    display: block;
    border-radius: 0 0 4px 4px;
    position: absolute;
    visibility: hidden;
    background: #FFF;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li {
    margin: 0 20px;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
    border-bottom: none;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a {
    padding: 18px 0 12px;
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid rgb(239.39, 238.76, 242.82);
    text-transform: capitalize;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a::before {
    position: absolute;
    top: 30px;
    inset-inline-start: 0;
    content: "";
    width: 15px;
    height: 2px;
    background-color: #61C01A;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a.active, .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
    color: #61C01A;
    padding-inline-start: 22px;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a.active:before, .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a:hover:before {
    visibility: visible;
    opacity: 1;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
    width: 100%;
    inset-inline-end: auto;
    inset-inline-start: 0;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
    pointer-events: none;
    cursor: default;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li a i {
    margin: 0;
    position: absolute;
    top: 55%;
    font-size: 16px;
    line-height: 1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    inset-inline-end: 0;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    top: 0;
    opacity: 0;
    inset-inline-start: -275px;
    inset-inline-end: auto;
    visibility: hidden;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item.lang-flag .lang-btn {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: transparent;
    outline: 0;
    border: 0px;
    gap: 4px;
    padding: 0px;
    margin-inline-start: 24px; /*0px*/
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item.lang-flag .lang-btn img.site-country {
    width: 24px;
    height: 24px;
    object-fit: fill;
    border-radius: 50%;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item.lang-flag .lang-btn span.site-lang {
    /*color: light-theme-color("white");*/
    color: #201751;
    font-size: 16px;
    font-weight: 500;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item.lang-flag .lang-btn:hover span.site-lang {
    color: #61C01A;
  }
  .header-wrap .header-bottom .navbar .navbar-nav .nav-item:hover .dropdown-menu {
    top: 85px;
    opacity: 1;
    visibility: visible;
  }
  .header-wrap .header-bottom .navbar .others-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-wrap.sticky .header-bottom .navbar .navbar-nav .nav-item a {
    color: #FFF;
  }
  .header-wrap.sticky .header-bottom .navbar .navbar-nav .nav-item a.active, .header-wrap.sticky .header-bottom .navbar .navbar-nav .nav-item a:hover {
    color: #61C01A;
  }
  .header-wrap.sticky .header-bottom .navbar .navbar-nav .nav-item.lang-flag {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .header-wrap.sticky .header-bottom .navbar .navbar-nav .nav-item.lang-flag .lang-btn {
    margin-inline-start: 4px; /*0px*/
  }
  .header-wrap.sticky .header-bottom .navbar .navbar-nav .nav-item.lang-flag .lang-btn span.site-lang {
    color: #FFF;
  }
  .header-wrap.sticky .header-bottom .navbar .others-options .searchbox {
    margin-inline-start: 0px; /*16px*/
  }
}
@media only screen and (min-width: 1400px) {
  .header-wrap .navbar .navbar-nav .nav-item {
    margin: 0 15px;
  }
  .header-wrap .navbar .navbar-nav .nav-item a {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1600px) {
  .header-wrap .container {
    max-width: 1520px;
  }
}
.footer-wrap {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  background-color: #201751;
}
.footer-wrap .footer-shape-three {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  z-index: -1;
}
.footer-wrap .container {
  position: relative;
  z-index: 1;
}
.footer-wrap .container .footer-shape-one {
  position: absolute;
  top: 30%;
  inset-inline-start: -100px;
  z-index: -1;
  -moz-animation: float 1500ms infinite ease-in-out;
  -webkit-animation: float 1500ms infinite ease-in-out;
  animation: float 1500ms infinite ease-in-out;
}
.footer-wrap .container .footer-shape-two {
  position: absolute;
  bottom: 100px;
  inset-inline-end: -100px;
  z-index: -1;
  -moz-animation: animationFramesTwo 15000ms infinite ease-in-out;
  -webkit-animation: animationFramesTwo 15000ms infinite ease-in-out;
  animation: animationFramesTwo 15000ms infinite ease-in-out;
}
.footer-wrap .footer-widget {
  margin-bottom: 32px;
}
.footer-wrap .footer-widget .footer-widget-title {
  font-size: 24px;
  font-weight: 600;
  color: #FFF;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
  text-transform: capitalize;
}
.footer-wrap .footer-widget .footer-widget-title:after {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  content: "";
  width: 55px;
  height: 2px;
  background-color: #61C01A;
}
.footer-wrap .footer-widget .footer-logo {
  margin-bottom: 16px;
  display: block;
}
.footer-wrap .footer-widget .footer-logo img {
  width: 180px;
  height: auto;
}
.footer-wrap .footer-widget .comp-desc {
  font-size: 14px;
  color: rgb(229.5, 229.5, 229.5);
  margin-block: 28px;
  margin-inline: 0px;
  padding-inline-end: 8px;
  text-align: start;
}
.footer-wrap .footer-widget .comp-desc img {
  width: 40px;
  height: auto;
  aspect-ratio: 2/1;
  float: inline-start;
  margin-inline-end: 10px;
}
.footer-wrap .footer-widget .social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.footer-wrap .footer-widget .social-link .social-profile li a {
  font-size: 16px;
}
.footer-wrap .footer-widget .social-link .social-profile li a:hover {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  transform: translateY(-2px);
}
.footer-wrap .footer-widget .footer-menu li {
  margin-bottom: 12px;
}
.footer-wrap .footer-widget .footer-menu li:last-child {
  margin-bottom: 0;
}
.footer-wrap .footer-widget .footer-menu li a {
  font-size: 14px;
  color: rgb(229.5, 229.5, 229.5);
  position: relative;
  padding-inline-start: 18px;
  text-transform: capitalize;
}
.footer-wrap .footer-widget .footer-menu li a:after {
  position: absolute;
  bottom: -5px;
  inset-inline-start: 20px;
  content: "";
  width: 0;
  height: 1px;
  background-color: #61C01A;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.footer-wrap .footer-widget .footer-menu li a i {
  position: absolute;
  top: 4px;
  inset-inline-start: 0;
  font-size: 10px;
  color: #61C01A;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.footer-wrap .footer-widget .footer-menu li a:hover {
  color: #61C01A;
}
.footer-wrap .footer-widget .footer-menu li a:hover:after {
  visibility: visible;
  opacity: 1;
  width: calc(100% - 22px);
}
.footer-wrap .footer-widget .footer-menu li a:hover i {
  color: #61C01A;
  transform: translateX(42%);
}
.footer-wrap .footer-widget .footer-menu li a.active {
  cursor: default;
  pointer-events: none;
  color: #61C01A;
}
.footer-wrap .footer-widget .footer-menu li a.active i {
  color: #61C01A;
  transform: translateX(42%);
}
.footer-wrap .footer-widget .contact-info li {
  position: relative;
  padding-inline-start: 25px;
  margin-bottom: 15px;
}
.footer-wrap .footer-widget .contact-info li:last-child {
  margin-bottom: 0;
}
.footer-wrap .footer-widget .contact-info li i {
  position: absolute;
  top: 4px;
  inset-inline-start: 0;
  font-size: 14px;
  line-height: 0.8;
  color: #61C01A;
}
.footer-wrap .footer-widget .contact-info li p, .footer-wrap .footer-widget .contact-info li a {
  color: rgb(229.5, 229.5, 229.5);
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-wrap .footer-widget .contact-info li:hover a {
  color: #61C01A;
}
.footer-wrap .footer-widget.newsletter-widget .newsletter-text {
  font-size: 14px;
  color: rgb(229.5, 229.5, 229.5);
  margin-bottom: 28px;
}
.footer-wrap .footer-widget.newsletter-widget .newsletter-form {
  position: relative;
  margin-bottom: 28px;
}
.footer-wrap .footer-widget.newsletter-widget .newsletter-form input {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 4px;
  background-color: #FFF;
  color: #61C01A;
  text-align: start;
  padding-inline: 14px;
  font-size: 14px;
  direction: ltr;
}
.footer-wrap .footer-widget.newsletter-widget .newsletter-form input::placeholder {
  opacity: 0.9;
  color: #61C01A;
}
.footer-wrap .footer-widget.newsletter-widget .newsletter-form input::-webkit-input-placeholder {
  opacity: 0.9;
  color: #61C01A;
}
.footer-wrap .footer-widget.newsletter-widget .newsletter-form input:-moz-placeholder {
  opacity: 0.9;
  color: #61C01A;
}
.footer-wrap .footer-widget.newsletter-widget .newsletter-form input::-moz-placeholder {
  opacity: 0.9;
  color: #61C01A;
}
.footer-wrap .footer-widget.newsletter-widget .newsletter-form input:-ms-input-placeholder {
  opacity: 0.9;
  color: #61C01A;
}
.footer-wrap .footer-widget.newsletter-widget .newsletter-form .invalid-feedback {
  font-size: 16px;
  color: var(--bs-warning);
}
.footer-wrap .footer-widget.newsletter-widget .newsletter-form button {
  border: none;
  border-radius: 28px; /*4px*/
  width: 100%;
  height: 40px;
  padding: 10px;
  font-size: 14px;
  background-color: #61C01A;
  margin: 15px 0 0;
  color: #FFF;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.footer-wrap .footer-widget.newsletter-widget .newsletter-form button:hover {
  background-color: #FFF;
  color: #61C01A;
}
.footer-wrap .footer-widget.newsletter-widget .newsletter-form .newsletter-alert {
  font-size: 16px;
}

.copyright-text {
  padding: 16px 10px 20px;
  text-align: center;
  border-top: 1px solid #cccccc;
}
.copyright-text p {
  color: #FFF;
  text-align: center;
  margin: 0;
}
.copyright-text p i {
  position: relative;
  top: 0px;
  margin-inline-end: 2px;
}
.copyright-text p a {
  color: #61C01A;
  font-weight: 600;
}
.copyright-text p a:hover {
  text-decoration: underline;
}

.cookies-alert {
  position: fixed;
  bottom: 0;
  left: 1%;
  width: 98%;
  background-color: #f4f4f4;
  color: rgb(229.5, 229.5, 229.5);
  padding: 16px;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.8s ease;
  z-index: 9999999;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0px -2px 8px 4px rgba(32, 23, 81, 0.15);
}
.cookies-alert.active {
  transform: translateY(0);
  opacity: 1;
}
.cookies-alert.close {
  transform: translateY(100%);
  opacity: 0;
}
.cookies-alert .cookies-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1400px) {
  .cookies-alert .cookies-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookies-alert .cookies-content .cookies-text, .cookies-alert .cookies-content p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}
.cookies-alert .cookies-content .cookies-accept {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 24px !important;
}

@media only screen and (max-width: 767.98px) {
  .footer-wrap .footer-widget .footer-widget-title {
    font-size: 16px;
    margin-bottom: 8px;
    padding-bottom: 10px;
  }
  .footer-wrap .footer-widget .contact-info li {
    margin-bottom: 10px;
  }
  .footer-wrap .footer-widget .contact-info li i {
    top: 5px;
  }
  .footer-wrap .footer-widget .footer-menu li {
    margin-bottom: 8px;
  }
  .footer-wrap .footer-widget .newsletter-form input, .footer-wrap .footer-widget .newsletter-form button {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .footer-wrap .footer-widget .comp-desc {
    padding-inline-end: 16px;
  }
}
@media only screen and (max-width: 991.98px) {
  .footer-wrap .footer-widget .footer-widget-title {
    font-size: 20px;
    margin-bottom: 18px;
    padding-bottom: 12px;
  }
  .footer-wrap .footer-widget .comp-desc {
    margin: 16px 0 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .footer-wrap .footer-widget .comp-desc {
    padding-inline-end: 20px;
  }
  .footer-wrap .footer-widget .newsletter-form {
    position: relative;
  }
}
@media only screen and (max-width: 1199.98px) {
  .footer-wrap .footer-top .footer-widget .footer-widget-title {
    margin-bottom: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-wrap .footer-widget {
    margin-bottom: 24px;
  }
  .footer-wrap .footer-widget .comp-desc {
    padding-inline-end: 24px;
  }
}
.popular-countries .country-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 24px;
  background-color: #FFF;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.popular-countries .country-badge .flag-wrapper {
  width: 40px;
  height: 27px;
  aspect-ratio: 40/27;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
}
.popular-countries .country-badge .flag-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.6s ease;
}
.popular-countries .country-badge .country-name {
  font-weight: 600;
  font-size: 16px;
  color: #201751;
}
.popular-countries .country-badge:hover {
  transform: scale(1.08);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}
.popular-countries .country-badge:hover .flag-wrapper img {
  transform: rotate(360deg) scale(1.1);
}

.all-countries {
  display: grid;
  gap: 8px;
  padding-block-end: 8px;
  grid-template-columns: repeat(1, 100%);
}
@media only screen and (min-width: 768px) {
  .all-countries {
    grid-template-columns: repeat(2, 48%);
  }
}
@media only screen and (min-width: 992px) {
  .all-countries {
    gap: 12px;
    grid-template-columns: repeat(3, 32%);
  }
}
@media only screen and (min-width: 1200px) {
  .all-countries {
    grid-template-columns: repeat(4, 24%);
  }
}
.all-countries .country-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 4px;
  background-color: #FFF;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}
.all-countries .country-badge .flag-wrapper {
  width: 40px;
  height: 27px;
  aspect-ratio: 40/27;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
}
.all-countries .country-badge .flag-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.6s ease;
}
.all-countries .country-badge .country-name {
  font-weight: 600;
  font-size: 16px;
  color: #201751;
}
.all-countries .country-badge:hover {
  transform: scale(1.08);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}
.all-countries .country-badge:hover .flag-wrapper img {
  transform: rotate(360deg) scale(1.1);
}

.currency-title {
  font-weight: 500;
  font-size: 14px;
  color: #201751;
}
.currency-title span {
  font-weight: 700;
}

.all-countries-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  cursor: pointer;
}
.all-countries-link i {
  color: #61C01A;
  transition: transform 0.3s ease;
}
.all-countries-link:hover i {
  transform: translateX(4px);
}

.trustpilot-for-light, .trustpilot-for-dark {
  display: none;
}

.theme-light .trustpilot-for-light {
  display: block;
}
.theme-light .trustpilot-for-dark {
  display: none;
}

.theme-dark .trustpilot-for-light {
  display: none;
}
.theme-dark .trustpilot-for-dark {
  display: block;
}

.img-vertical-wrap {
  width: auto;
  max-width: max(100%, 290px);
  height: auto;
  aspect-ratio: 1000/1520;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12px;
}
.img-vertical-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.error-content {
  text-align: center;
}
.error-content img {
  display: block;
  margin: 0 auto 20px;
  max-width: 600px;
}
.error-content p {
  margin: 0 auto 20px;
  max-width: 520px;
}

.faq-wrap {
  position: relative;
}
.faq-wrap .faq-list .faq-cat-list {
  border: none;
  border-radius: 0px;
}
.faq-wrap .faq-list .faq-cat-list .faq-cat {
  background-color: transparent;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: padding 0.3s ease;
}
.faq-wrap .faq-list .faq-cat-list .faq-cat .faq-cat-title {
  color: rgb(98.9, 92.6, 133.2);
  font-weight: 600;
}
.faq-wrap .faq-list .faq-cat-list .faq-cat .faq-cat-title .ri-arrow-right-s-line {
  display: none;
  margin-inline-end: 8px;
}
.faq-wrap .faq-list .faq-cat-list .faq-cat .badge {
  background-color: #201751;
  color: #FFF;
  border-radius: 4px !important;
  min-width: 32px;
  width: 32px;
  max-width: 32px;
  text-align: center;
}
.faq-wrap .faq-list .faq-cat-list .faq-cat.active .faq-cat-title {
  color: #61C01A;
}
.faq-wrap .faq-list .faq-cat-list .faq-cat.active .faq-cat-title .ri-arrow-right-s-line {
  display: inline-block;
}
.faq-wrap .faq-list .faq-cat-list .faq-cat.active .badge {
  background-color: #61C01A;
  color: #FFF;
}
.faq-wrap .faq-list .faq-cat-list .faq-cat.active:hover {
  cursor: default;
  pointer-events: none;
}
.faq-wrap .faq-list .faq-cat-list .faq-cat.active:hover .faq-cat-title {
  color: #61C01A;
}
.faq-wrap .faq-list .faq-cat-list .faq-cat:hover .faq-cat-title {
  color: #201751;
}
.faq-wrap .faq-list .faq-cat-list .faq-cat:hover .faq-cat-title .ri-arrow-right-s-line {
  display: inline-block;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content {
  display: block;
  opacity: 1;
}
@media only screen and (min-width: 992px) {
  .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content {
    display: none;
    opacity: 0;
  }
  .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content.active {
    display: block;
  }
  .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content.active .faq-cat-collapse {
    display: block;
  }
  .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content.show {
    opacity: 1;
  }
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-title {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #201751;
  text-transform: capitalize;
}
@media only screen and (min-width: 576px) {
  .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-title {
    display: none;
  }
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-title .badge {
  color: #FFF;
  background-color: #201751;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-title:hover {
  cursor: pointer;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-title:not(.collapsed) {
  color: #61C01A;
  padding-inline-start: 12px;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-title:not(.collapsed) .badge {
  color: #FFF;
  background-color: #61C01A;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse {
  padding-block: 8px 16px;
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(97, 192, 26, 0.85);
}
@media only screen and (min-width: 992px) {
  .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse {
    padding-block: 0px;
    margin-bottom: 0px;
    border-bottom: none;
  }
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse:last-child {
  border-bottom: none;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details {
  border: none;
  margin: 0 0 20px;
  background: transparent;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details:last-child {
  margin-bottom: 0;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title {
  margin-bottom: 0;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  border-radius: 4px;
  color: #201751;
  text-align: start;
  align-items: center;
  padding-block: 16px;
  padding-inline: 16px 60px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-color: #FFF;
  border: 1px solid rgba(32, 23, 81, 0.1);
  box-shadow: none;
}
@media only screen and (min-width: 992px) {
  .faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button {
    padding-block: 20px;
    padding-inline: 20px 68px;
    font-size: 20px;
  }
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button:after {
  display: none;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button:focus {
  outline: none;
  box-shadow: none;
}
.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;
}
.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;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button span {
  display: inline-block;
  min-width: 60px;
  height: calc(100% - 8px);
  background-color: #201751;
  text-align: center;
  position: absolute;
  top: 4px;
  inset-inline-end: 4px;
  border-radius: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button span i {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 30px;
  line-height: 0.8;
  color: #FFF;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button span i.minus {
  visibility: hidden;
  opacity: 0;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button span i.minus {
  visibility: hidden;
  opacity: 0;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button:not(.collapsed) {
  color: #FFF;
  background: #201751 !important;
  border: 1px solid rgba(32, 23, 81, 0.1);
  border-radius: 4px 4px 0 0;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button:not(.collapsed) span i.plus {
  visibility: hidden;
  opacity: 0;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .question-title .accordion-button:not(.collapsed) span i.minus {
  visibility: visible !important;
  opacity: 1 !important;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .accordion-collapse {
  border: none;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .accordion-collapse .question-answer {
  border: 1px solid rgba(32, 23, 81, 0.1);
  background-color: #FFF;
  padding: 16px 20px 20px;
  border-radius: 0 0 4px 4px;
  padding-bottom: 16px;
}
.faq-wrap .faq-list .faq-tab-content .faq-cat-tab-content .faq-cat-collapse .question-details .accordion-collapse .question-answer article {
  border-bottom: none;
  margin-bottom: 0px;
}

.contact-info-area .contact-item {
  min-height: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  background: #201751;
  padding: 24px;
  border-radius: 8px;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.contact-info-area .contact-item:after {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  content: "";
  width: 100%;
  height: 0;
  background-color: #61C01A;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
.contact-info-area .contact-item .contact-icon {
  width: 50px;
  height: 50px;
  position: relative;
  top: 5px;
  border-radius: 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #FFF;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.contact-info-area .contact-item .contact-icon i {
  color: #61C01A;
  line-height: 0.8;
  font-size: 32px;
  position: relative;
  -webkit-transition: all 0.34s ease-in-out;
  transition: all 0.34s ease-in-out;
}
.contact-info-area .contact-item .contact-info {
  width: calc(100% - 70px);
  margin-inline-start: 20px;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.contact-info-area .contact-item .contact-info h3 {
  color: #61C01A;
  font-size: 22px;
  margin: 0 0 4px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.contact-info-area .contact-item .contact-info a, .contact-info-area .contact-item .contact-info p {
  display: block;
  margin: 0;
  line-height: 1.5;
  color: #FFF;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: start;
  direction: ltr;
}
.contact-info-area .contact-item:hover:after {
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.contact-info-area .contact-item:hover .contact-icon {
  background-color: #FFF;
}
.contact-info-area .contact-item:hover .contact-icon i {
  color: #61C01A;
}
.contact-info-area .contact-item:hover .contact-info {
  color: #FFF;
}
.contact-info-area .contact-item:hover .contact-info a,
.contact-info-area .contact-item:hover .contact-info h3,
.contact-info-area .contact-item:hover .contact-info p {
  color: #FFF;
}

.contact-form-wrap {
  position: relative;
  z-index: 1;
}
.contact-form-wrap .contact-form .form-group {
  margin: 0 0 20px;
}
.contact-form-wrap .contact-form .form-group input,
.contact-form-wrap .contact-form .form-group textarea {
  width: 100%;
  background: #FFF;
  color: rgba(32, 23, 81, 0.85);
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #61C01A;
  direction: ltr;
}
.contact-form-wrap .contact-form .form-group input:focus,
.contact-form-wrap .contact-form .form-group textarea:focus {
  color: #61C01A;
  box-shadow: 1px 2px 4px 0px #61C01A;
}
.contact-form-wrap .contact-form .form-group input {
  height: 52px;
}
.contact-form-wrap .contact-form .form-group textarea {
  height: 144px;
  resize: none;
}
.contact-form-wrap .contact-form .btn.disabled, .contact-form-wrap .contact-form .btn:disabled {
  background-color: #201751;
  opacity: 0.75;
  color: #FFF;
}

.complaint-wrap {
  position: relative;
  z-index: 1;
}
.complaint-wrap .complaint-form .form-group {
  margin: 0 0 20px;
}
.complaint-wrap .complaint-form .form-group input,
.complaint-wrap .complaint-form .form-group textarea {
  width: 100%;
  background: #FFF;
  color: rgba(32, 23, 81, 0.85);
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #61C01A;
  direction: ltr;
}
.complaint-wrap .complaint-form .form-group input:focus,
.complaint-wrap .complaint-form .form-group textarea:focus {
  color: #201751;
  box-shadow: 1px 2px 4px 0px #61C01A;
}
.complaint-wrap .complaint-form .form-group input {
  height: 52px;
}
.complaint-wrap .complaint-form .form-group textarea {
  height: 144px;
  resize: none;
}
.complaint-wrap .complaint-form .form-group select {
  width: 100%;
  background-color: #FFF;
  border: 1px solid #61C01A;
  border-radius: 4px;
  padding-inline: 12px 16px;
  height: 52px;
  background-size: 20px;
  background-position: 95% 50%;
  direction: ltr;
  color: rgba(32, 23, 81, 0.85);
}
.complaint-wrap .complaint-form .form-group select:focus {
  color: #201751;
  box-shadow: 1px 2px 4px 0px #61C01A;
}
.complaint-wrap .complaint-form .form-group .file-note {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.75;
  color: rgba(0, 0, 0, 0.85);
}
.complaint-wrap .complaint-form .form-group .file-note span {
  font-weight: 600;
}
.complaint-wrap .complaint-form .btn.disabled, .complaint-wrap .complaint-form .btn:disabled {
  background-color: #201751;
  opacity: 0.75;
  color: #FFF;
}

.custom-form-wrap {
  position: relative;
  z-index: 1;
}
.custom-form-wrap .custom-form .form-group {
  margin: 0 0 20px;
}
.custom-form-wrap .custom-form .form-group input,
.custom-form-wrap .custom-form .form-group textarea {
  width: 100%;
  background: #FFF;
  color: rgba(32, 23, 81, 0.85);
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #61C01A;
  direction: ltr;
}
.custom-form-wrap .custom-form .form-group input:focus,
.custom-form-wrap .custom-form .form-group textarea:focus {
  color: #61C01A;
  box-shadow: 1px 2px 4px 0px #61C01A;
}
.custom-form-wrap .custom-form .form-group input {
  height: 52px;
}
.custom-form-wrap .custom-form .form-group textarea {
  height: 144px;
  resize: none;
}
.custom-form-wrap .custom-form .form-group input[type=email],
.custom-form-wrap .custom-form .form-group input[type=number],
.custom-form-wrap .custom-form .form-group input[type=date],
.custom-form-wrap .custom-form .form-group input[type=file] {
  width: 100%;
  background: #FFF;
  color: rgba(32, 23, 81, 0.85);
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #61C01A;
}
.custom-form-wrap .custom-form .form-group input[type=email]:focus,
.custom-form-wrap .custom-form .form-group input[type=number]:focus,
.custom-form-wrap .custom-form .form-group input[type=date]:focus,
.custom-form-wrap .custom-form .form-group input[type=file]:focus {
  color: #61C01A;
  box-shadow: 1px 2px 4px 0px #61C01A;
}
.custom-form-wrap .custom-form .form-group select {
  width: 100%;
  background-color: #FFF;
  color: rgba(32, 23, 81, 0.85);
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #61C01A;
  height: 52px;
  background-size: 20px;
  background-position: 99% 50%;
  direction: ltr;
}
.custom-form-wrap .custom-form .form-group select:focus {
  color: #61C01A;
  box-shadow: 1px 2px 4px 0px #61C01A;
}
.custom-form-wrap .custom-form .form-group .form-check {
  display: flex;
  align-items: center;
  gap: 6px;
}
.custom-form-wrap .custom-form .form-group .form-check label {
  margin: 0;
  font-size: 15px;
  color: rgba(32, 23, 81, 0.85);
  cursor: pointer;
}
.custom-form-wrap .custom-form .form-group input[type=checkbox] {
  appearance: none;
  width: 14px !important;
  height: 14px !important;
  padding: initial !important;
  border: 2px solid #201751;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  background: #FFF;
  transition: all 0.2s ease;
}
.custom-form-wrap .custom-form .form-group input[type=checkbox]:checked {
  background: #61C01A;
  border-color: #61C01A;
}
.custom-form-wrap .custom-form .form-group input[type=checkbox]:checked::after {
  content: "✔";
  position: absolute;
  color: #FFF;
  font-size: 10px;
  inset-inline-start: 1px;
  top: -2px;
}
.custom-form-wrap .custom-form .form-group input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 6px 2px rgba(97, 192, 26, 0.5);
}
.custom-form-wrap .custom-form .form-group input[type=radio] {
  appearance: none;
  width: 14px !important;
  height: 14px !important;
  padding: initial !important;
  border: 2px solid #201751;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  background: #FFF;
  transition: all 0.2s ease;
}
.custom-form-wrap .custom-form .form-group input[type=radio]:checked {
  border-color: #FFF;
  background-color: #61C01A;
}
.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);
}
.custom-form-wrap .custom-form .btn.disabled, .custom-form-wrap .custom-form .btn:disabled {
  background-color: #201751;
  opacity: 0.75;
  color: #FFF;
}

.careers-wrap {
  position: relative;
}
.careers-wrap .careers-categories {
  padding-bottom: 28px;
}
.careers-wrap .careers-categories .category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 4px;
  background-color: #FFF;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.careers-wrap .careers-categories .category-badge .category-name {
  font-weight: 600;
  font-size: 14px;
  color: #201751;
}
@media only screen and (min-width: 768px) {
  .careers-wrap .careers-categories .category-badge .category-name {
    font-size: 16px;
  }
}
.careers-wrap .careers-categories .category-badge:hover {
  transform: scale(1.08);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}
.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);
  margin-bottom: 24px;
  background-color: #FFF;
  border-radius: 4px;
  padding-block: 16px;
}
.careers-wrap .careers-list .career-card .career-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}
.careers-wrap .careers-list .career-card .career-title h3 {
  margin-bottom: 0px;
  color: #201751;
  text-transform: capitalize;
  font-size: 20px;
}
@media only screen and (min-width: 576px) {
  .careers-wrap .careers-list .career-card .career-title h3 {
    font-size: 28px;
  }
}
.careers-wrap .careers-list .career-card .career-title a.career-apply {
  font-size: 14px;
  color: rgb(144.4, 210.9, 94.7);
  font-weight: 600;
  text-transform: capitalize;
}
.careers-wrap .careers-list .career-card .career-title a.career-apply:hover {
  text-decoration: underline;
  color: #61C01A;
}
@media only screen and (min-width: 576px) {
  .careers-wrap .careers-list .career-card .career-title a.career-apply {
    font-size: 16px;
  }
}
.careers-wrap .careers-list .career-card .career-title a.career-apply .ri-arrow-right-up-line {
  margin-inline-start: 0px;
}
.careers-wrap .careers-list .career-card .career-category {
  font-size: 16px;
  font-weight: 500;
  color: #61C01A;
}
.careers-wrap .careers-list .career-card .career-details {
  border-bottom: none;
  margin-bottom: 0px;
  font-size: 16px;
}
@media only screen and (min-width: 576px) {
  .careers-wrap .careers-list .career-card .career-details {
    font-size: 20px;
  }
}
.careers-wrap .careers-list .career-card .badge {
  border: 2px solid #61C01A;
  color: #61C01A;
  border-radius: 24px;
  padding-inline: 12px;
  padding-block: 8px;
  margin-inline-end: 8px;
  margin-block-end: 8px;
}
@media only screen and (min-width: 768px) {
  .careers-wrap .careers-list .career-card .badge {
    margin-block-end: 0px;
  }
}
.careers-wrap .careers-list .career-card .badge:last-child {
  margin-block-end: 0px;
}
.careers-wrap .careers-list .career-card .badge i {
  margin-inline-end: 4px;
}
.careers-wrap .careers-list .career-card .badge i:before {
  font-size: 16px;
}
.careers-wrap .careers-list .career-card .badge.career-location, .careers-wrap .careers-list .career-card .badge.career-time {
  font-size: 14px;
  font-weight: 600;
}
.careers-wrap .careers-list .career-card .badge.career-linkedin a {
  color: #61C01A;
  font-size: 14px;
  font-weight: 600;
}
.careers-wrap .careers-list .career-card .badge.career-linkedin a:hover {
  text-decoration: underline;
}

/*-----------------------------------------
  _owl-carousel.scss - Owl Carousel - Custom Styling Overrides
  -----------------------------------------
  This file contains style overrides and enhancements for the Owl Carousel plugin.

  - Requires Owl Carousel HTML structure
  - Includes navigation and dot styling
------------------------------------------*/
.owl-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.owl-carousel .owl-nav button.owl-prev i, .owl-carousel .owl-nav button.owl-next i {
  font-size: 18px;
  line-height: 0.8;
  display: inline-block;
  position: relative;
  top: 1px;
  color: #666666;
  margin: 0 auto;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.owl-carousel .owl-nav button.owl-prev:hover, .owl-carousel .owl-nav button.owl-next:hover {
  background-color: #61C01A;
  border-color: transparent;
}
.owl-carousel .owl-nav button.owl-prev:hover i, .owl-carousel .owl-nav button.owl-next:hover i {
  color: #FFF;
}
.owl-carousel .owl-nav button.owl-prev i {
  right: 2px;
}
.owl-carousel .owl-nav button.owl-next i {
  left: 2px;
}
.owl-carousel .owl-dots button.owl-dot {
  display: inline-block;
  margin: 0 6px;
  position: relative;
  bottom: -5px;
}
.owl-carousel .owl-dots button.owl-dot span {
  display: inline-block;
  width: 16px;
  height: 10px;
  border-radius: 50px;
  background: #9A9CB1;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.owl-carousel .owl-dots button.owl-dot.active span {
  width: 28px;
  background: #61C01A;
}/*# sourceMappingURL=style.css.map */