@charset "utf-8";
:root {
--montserrat-font:"Montserrat", sans-serif;
--inter-font:"Inter", sans-serif;
--roboto-font:"Roboto", sans-serif;
--primaryfont:'Inter', sans-serif;
--secondaryfont:'Montserrat', sans-serif;
--tertiaryfont:'Roboto', sans-serif;
--quaternaryfont:'Arial', 'Helvetica', sans-serif;
--primarycolor:#17493A;
--secondarycolor:#A6CE39;
--tertiarycolor:#8B6F47;
--quaternarycolor:#999999;
--quinarycolor:#888888;
--senarycolor:#777777;
--septenarycolor:#666666;
--octonarycolor:#555555;
--nonarycolor:#444444;
--denarycolor:#333333;
--undenarycolor:#222222;
--duodenarycolor:#2A2A2A;
--tredecenarycolor:#111111;
--quattuordecenarycolor:#1A1A1A;
--quindecenarycolor:#0A0A0A;
--colorwhite:#ffffff;
--colorblack:#000000;
--silver:#faf9f7;
--disabled:#dddddd;
--whitearrow: url("../images/icons/icon-move-light.png"), move;
--blackarrow: url("../images/icons/icon-move-black.png"), move;
--patternbackground:url("../images/icons/bg-pattern.png");
}
html {
  font-synthesis: none;
  -moz-font-feature-settings: inherit;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html, body {
  height: 100%;
  min-height: 100%;
}
a, em, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, select, small, span, strike, sub, summary, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 100%;
  background: transparent;
  font-variant-ligatures: none;
}
body {
 font-size:.875rem;
  font-style: normal;
  line-height: 1.6;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--colorwhite);
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", 'Helvetica', 'Helvetica Neue', Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--octonarycolor);
}
/* Selection */
::-moz-selection {
 color:var(--colorwhite);
 background:var(--colorblack);
}
::selection {
  color: var(--colorwhite);
  background: var(--colorblack);
}
/* Scrollbar */
body::-webkit-scrollbar {
 width:.5em;
 background-color:var(--disabled);
}
body::-webkit-scrollbar-track {
 background:var(--disabled);
}
body::-webkit-scrollbar-thumb {
 background-color:var(--colorblack);
 outline:0 solid var(--colorblack);
}
/* Loader */
#site-loader {
  display: none;
}
.site-loader {
  margin: 0;
  padding:0;
}
.site-loader .loading {
  width: 100%;
  height: 100%;
  text-align: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  overflow-x: hidden;
  overflow-y: hidden;
}
.site-loader .table {
  width: 100%;
  height:100%;
  display: table;
 margin: 0;
}
.site-loader .table .inner {
  display: table-cell;
  vertical-align: middle;
}
.site-loader .logo-round {
  background-color: var(--colorwhite);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  width:100px;
  height:100px;
  border: 3px solid var(--colorwhite);
}
.site-loader .spinner-border {
  width: 3rem;
  height: 3rem;
  border: 3px solid var(--colorwhite);
  vertical-align: middle;
  border-right-color: transparent;
}
.site-loader .opacity-low {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: .2;
  top: 0;
  left:0;
}
@-webkit-keyframes fadeOut {
0% {
opacity:1;
}
100% {
opacity:0;
}
}
@keyframes fadeOut {
0% {
opacity:1;
}
100% {
opacity:0;
}
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
/* Typography */
.ff-inter {
  font-family: var(--inter-font);
}
.ff-montserrat {
  font-family: var(--montserrat-font);
}
.ff-roboto {
  font-family: var(--roboto-font);
}
.font-weight-100 {
  font-weight: 100;
}
.font-weight-200 {
  font-weight: 200;
}
.font-weight-300 {
  font-weight: 300;
}
.font-weight-400 {
  font-weight: 400;
}
.font-weight-500 {
  font-weight: 500;
}
.font-weight-600 {
  font-weight: 600;
}
.font-weight-700 {
  font-weight: 700;
}
.font-weight-800 {
  font-weight: 800;
}
.font-weight-900 {
  font-weight: 900;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: var(--montserrat-font);
}
.h1, h1 {
  font-size: 2.5rem;
}
.h2, h2 {
  font-size: 2rem;
}
.h3, h3 {
  font-size: 1.75rem;
}
.h4, h4 {
  font-size: 1.5rem;
}
.h5, h5 {
  font-size: 1.25rem;
}
.h6, h6 {
  font-size: 1rem;
}
p {
  margin: 0;
  padding: 0;
  font-weight: 500;
}
.text-extra-tiny {
  font-size: 10px;
  line-height: 1.2;
}
.text-tiny {
  font-size: 12px;
  line-height: 1.33;
}
.text-extra-small {
  font-size: 14px;
  line-height: 1.29;
}
.text-small {
  font-size: 16px;
  line-height: 1.38;
}
.text-medium {
  font-size: 18px;
  line-height: 1.33;
}
.text-extra-medium {
  font-size: 20px;
  line-height: 1.4;
}
.text-large {
  font-size: 24px;
  line-height: 1.25;
}
.text-extra-large {
  font-size: 32px;
  line-height: 1.25;
}
.text-extra-xl {
  font-size: 50px;
  line-height: 1;
}
.text-extra-xxl {
  font-size: 100px;
  line-height: 1;
}
.text-extra-xxxl {
  font-size: 120px;
  line-height: 1;
}
.letter-spacing-small {
  letter-spacing: 1px;
}
.letter-spacing-medium {
  letter-spacing: 2px;
}
.letter-spacing-large {
  letter-spacing: 3px;
}
.letter-spacing-xlarge {
  letter-spacing: 4px;
}
.letter-spacing-xxlarge {
  letter-spacing: 5px;
}
.letter-spacing-minus-small {
  letter-spacing: -1px
}
.letter-spacing-minus-medium {
  letter-spacing: -2px
}
.letter-spacing-minus-large {
  letter-spacing: -3px
}
.letter-spacing-minus-xlarge {
  letter-spacing: -4px
}
.letter-spacing-minus-xxlarge {
  letter-spacing: -5px
}
/* Colors */
.theme-color-1 {
  color: var(--primarycolor);
}
.theme-color-2 {
  color: var(--secondarycolor);
}
.theme-color-3 {
  color: var(--tertiarycolor);
}
.theme-background-1 {
  background: var(--primarycolor);
}
.theme-background-2 {
  background: var(--secondarycolor);
}
.theme-background-3 {
  background: var(--tertiarycolor);
}
.bg-silver {
  background: var(--silver);
}
.bg-black {
  background: var(--colorblack);
}
.bg-white {
  background: var(--colorwhite);
}
.bg-disabled {
  background: var(--disabled);
}
/* Others */
.clear-both {
  clear: both;
}
iframe {
  border: 0;
}
input, select {
  vertical-align: middle;
}
input:focus, textarea:focus {
  outline: none;
}
span.hideemail {
  display: none;
}
embed, img, object, video {
  max-width: 100%;
  height: auto;
}
/* Sections */
.section-padding-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-padding-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}
.section-padding-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-padding-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}
section.common {
  position: relative;
  z-index: 10;
}
section.common-25 {
  padding-top: 25px;
  padding-bottom: 25px;
  background: var(--colorwhite);
  position: relative;
  z-index: 10;
}
section.common-50 {
  padding-top: 50px;
  padding-bottom: 50px;
  background: var(--colorwhite);
  position: relative;
  z-index: 10;
}
section.common-75 {
  padding-top: 75px;
  padding-bottom: 75px;
  background: var(--colorwhite);
  position: relative;
  z-index: 10;
}
section.common-100 {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--colorwhite);
  position: relative;
  z-index: 10;
}
section.common-alt-25 {
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;
  z-index: 10;
}
section.common-alt-50 {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 10;
}
section.common-alt-75 {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  z-index: 10;
}
section.common-alt-100 {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 10;
}
.stripped-bg {
  background: var(--patternbackground);
  background-repeat: repeat;
  background-color: var(--colorwhite);
}
/* Links */
a {
  color: var(--primarycolor);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
a:hover, a:focus {
  color: var(--secondarycolor);
  text-decoration: none;
  outline: 0;
}
a:active {
  color: var(--tertiarycolor);
  text-decoration: none;
  outline: 0;
}
a.white-link{
  color: var(--secondarycolor);
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s; 
}
a.white-link:hover{
  color: var(--colorwhite);
}
a.white-link:focus, a.white-link:active{
  color: var(--secondarycolor);
}
/* Columns */
.col-5th {
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 991.98px) {
.col-5th {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}
}
@media (max-width: 767.98px) {
.col-5th {
  flex: 0 0 50%;
  max-width: 50%;
}
}
@media (max-width: 575.98px) {
.col-5th {
  flex: 0 0 100%;
  max-width: 100%;
}
}
/* Forms */
.form-label {
  font-family: var(--roboto-font);
  font-size: 14px;
  color: var(--quaternarycolor);
}
.form-control {
  font-family: var(--roboto-font);
  color: var(--octonarycolor);
  border: 1px solid var(--disabled);
 border-radius:.25rem;
 -webkit-border-radius:.25rem;
 -moz-border-radius:.25rem;
}
.form-control:focus {
  border: 1px solid var(--quaternarycolor);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -ms-box-shadow: none;
}
.form-control::-moz-placeholder {
 color:var(--disabled);
 opacity:1;
}
.form-control:-ms-input-placeholder {
 color:var(--disabled);
}
.form-control::-webkit-input-placeholder {
 color:var(--disabled);
}
.form-select {
  font-family: var(--roboto-font);
  color: var(--octonarycolor);
  border: 1px solid var(--disabled);
}
.form-select:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -ms-box-shadow: none;
  border: 1px solid var(--quaternarycolor);
}
.form-check-label {
  font-family: var(--roboto-font);
  font-size: 14px;
  color: var(--octonarycolor);
}
.form-check-input:checked {
  background-color: var(--colorblack);
  border-color: var(--colorblack);
}
.form-check-input:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -ms-box-shadow: none;
}
textarea.form-control {
  font-family: var(--roboto-font);
  resize: none;
}
.is-valid {
  outline: 2px solid #198754 !important; /* green */
}
.is-invalid {
  outline: 2px solid #dc3545 !important; /* red */
}
/* Cards */
.card-box {
  margin-bottom: 24px;
  word-wrap: break-word;
  background-clip: border-box;
  background-color: var(--colorwhite);
  border: 0 solid transparent;
 border-radius:.25rem;
 -webkit-border-radius:.25rem;
 -moz-border-radius:.25rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
}
.card-box:hover {
  border: 0 solid transparent;
}
.card-box .card-header {
  background: var(--colorwhite);
  margin-bottom: 0;
  padding: 1rem 1.5rem;
}
.card-box .card-header:first-child {
 border-radius:.25rem .25rem 0 0;
 webkit-border-radius:.25rem .25rem 0 0;
 -moz-border-radius:.25rem .25rem 0 0;
}
.card-box .card-title {
  color: var(--octonarycolor);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}
.card-box .card-subtitle {
  font-weight: 500;
  color: var(--quaternarycolor);
  font-size: 12px;
  line-height: 14px;
}
.card-box .card-body {
  background: var(--colorwhite);
  color: var(--octonarycolor);
 border-radius:.25rem;
 -webkit-border-radius:.25rem;
 -moz-border-radius:.25rem;
}
.card-box .card-footer {
  background: var(--colorwhite);
}
.card-shadow {
  -webkit-box-shadow: 0 2px 5px 0 rgb(217 217 217 / 50%);
  -moz-box-shadow: 0 2px 5px 0 rgb(217 217 217 / 50%);
  -ms-box-shadow: 0 2px 5px 0 rgb(217 217 217 / 50%);
  box-shadow: 0 2px 5px 0 rgb(217 217 217 / 50%);
  -webkit-transition: all .5s ease 0;
  -moz-transition: all .5s ease 0;
  -ms-transition: all .5s ease 0;
  -o-transition: all .5s ease 0;
  transition: all .5s ease 0;
}
.card-shadow:hover {
  -webkit-box-shadow: 0 2px 18px 1px rgba(49,53,72,.1);
  -moz-box-shadow: 0 2px 18px 1px rgba(49,53,72,.1);
  -ms-box-shadow: 0 2px 18px 1px rgba(49,53,72,.1);
  box-shadow: 0 2px 18px 1px rgba(49,53,72,.1);
}
/* Arrows */
.white-move .slide-arrow {
  cursor: var(--whitearrow);
}
.black-move .slide-arrow {
  cursor: var(--blackarrow);
}
/* Header */
header.header .navbar {
  white-space: nowrap;
}
header.header {
  -webkit-transition: all .3s ease 0;
  -moz-transition: all .3s ease 0;
  -o-transition: all .3s ease 0;
  transition: all .3s ease 0;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.1);
  -webkit-box-shadow: 0 2px 10px 0 rgba(0,0,0,0.1);
  -moz-box-shadow: 0 2px 10px 0 rgba(0,0,0,0.1);
  -ms-box-shadow: 0 2px 10px 0 rgba(0,0,0,0.1);
  z-index: 999;
  width: 100%;
  position: relative;
}
.sticky-header {
  position: fixed!important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99999;
  animation: slideDown .5s ease-out;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.1);
  -webkit-box-shadow: 0 2px 10px 0 rgba(0,0,0,0.1);
  -moz-box-shadow: 0 2px 10px 0 rgba(0,0,0,0.1);
  -ms-box-shadow: 0 2px 10px 0 rgba(0,0,0,0.1)
}
@keyframes slideDown {
from {
 transform:translateY(-100%)
}
to {
  transform: translateY(0)
}
}
header.header nav li.nav-item .nav-link {
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all .3s ease 0;
  -moz-transition: all .3s ease 0;
  -o-transition: all .3s ease 0;
  transition: all .3s ease 0;
}
header.header .navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
@media (max-width: 991.98px) {
header.header .navbar-nav {
  margin-top: 10px;
  margin-bottom: 10px;
}
header.header nav li.nav-item .nav-link:hover {
  -webkit-transition: all .2s ease 0;
  -moz-transition: all .2s ease 0;
  -o-transition: all .2s ease 0;
  transition: all .2s ease 0;
}
}
@media (max-width: 991.98px) {
header.header .navbar-nav > li > .dropdown-menu {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
}
}
header.header .navbar-nav > li > .dropdown-menu {
  margin: 0px;
  padding: 0px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-box-shadow: 0 4px 70px 0 rgba(0,0,0,0.1);
  -moz-box-shadow: 0 4px 70px 0 rgba(0,0,0,0.1);
  -ms-box-shadow: 0 4px 70px 0 rgba(0,0,0,0.1);
  box-shadow: 0 4px 70px 0 rgba(0,0,0,0.1);
  top: 100%;
  left: 15%;
}
header.header .navbar-nav > li > .dropdown-menu a.dropdown-item {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
 padding:.5rem 1rem;
  -webkit-transition: all .2s ease 0;
  -moz-transition: all .2s ease 0;
  -o-transition: all .2s ease 0;
  transition: all .2s ease 0;
}
header.header .navbar-nav .dropdown-toggle::after {
  display: none;
}
header.header .navbar-nav > li > .dropdown-menu a.dropdown-item:hover {
  -webkit-transition: all .3s ease 0;
  -moz-transition: all .3s ease 0;
  -o-transition: all .3s ease 0;
  transition: all .3s ease 0;
}
header.header .navbar-toggler {
  border: none;
  padding: 0;
  font-size: 36px;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
header.header button.navbar-toggler:focus {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
}
@media (max-width: 991.98px) {
header.header nav li.nav-item.dropdown span.menu-arrow {
  float: right;
}
}
header.header .navbar-nav > li > .dropdown-menu {
  left: 10%;
}
header.header-light {
  background: var(--colorwhite);
}
header.header-light .sticky-header {
  background: var(--colorwhite);
}
header.header-light nav li.nav-item .nav-link {
  color: var(--septenarycolor);
}
header.header-light nav li.nav-item .nav-link:hover {
  color: var(--secondarycolor);
}
header.header-light nav li.nav-item .nav-link:focus {
  color: var(--tertiarycolor);
}
header.header-light nav li.nav-item .nav-link:active {
  color: var(--primarycolor)!important;
}
header.header-light nav li.nav-item .nav-link.active {
  color: var(--primarycolor)!important;
}
@media (max-width: 991.98px) {
header.header-light .navbar-nav {
  border-top: 1px solid var(--disabled);
}
header.header-light nav li.nav-item .nav-link {
  border-bottom: 1px solid var(--disabled);
}
header.header-light nav li.nav-item .nav-link:hover {
  background: var(--colorwhite);
}
}
header.header-light .navbar-nav > li > .dropdown-menu {
  border: 0 solid var(--colorwhite);
  background: var(--colorwhite);
}
header.header-light .navbar-nav > li > .dropdown-menu a.dropdown-item {
  background: var(--colorwhite);
  color: var(--septenarycolor);
  border-bottom: 1px solid var(--disabled);
}
header.header-light .navbar-nav > li > .dropdown-menu a.dropdown-item:hover {
  background: var(--colorwhite);
  color: var(--secondarycolor);
}
header.header-light .navbar-nav > li > .dropdown-menu a.dropdown-item:focus {
  background: var(--colorwhite);
  color: var(--tertiarycolor);
}
header.header-light .navbar-nav > li > .dropdown-menu a.dropdown-item:active {
  background: var(--colorwhite)!important;
  color: var(--primarycolor)!important;
}
header.header-light .dropdown-item.active, header.header .dropdown-item:active {
  background: var(--colorwhite)!important;
  color: var(--primarycolor)!important;
}
header.header-light button.navbar-toggler {
  color: var(--primarycolor);
}
header.header-light button.navbar-toggler:hover {
  color: var(--secondarycolor);
}
/* Footer */
footer.footer {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: inherit;
  position: relative;
  color: var(--colorwhite);
  background: var(--primarycolor);
  padding: 80px 0px 80px 0px;
}
a.footer-contact, .footer-contact {
  background: transparent;
  border: 2px solid var(--colorwhite);
  color: var(--colorwhite);
  border-radius: 50px;
  width: auto;
  height: auto;
  display: inline-block;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
a.footer-contact:hover, .footer-contact:hover {
  border: 2px solid var(--secondarycolor);
  color: var(--secondarycolor);
}
.social-media-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  font-size: 10px;
  color: var(--disabled);
  padding-top: 5px;
  padding-left: 5px;
  padding-right: 10px;
}
a.footer-links {
  font-size: 16px;
  line-height: 1.38;
  font-weight: 500;
  color: var(--disabled);
  -moz-transition: all, ease-in-out .5s;
  -o-transition: all, ease-in-out .5s;
  -webkit-transition: all, ease-in-out .5s;
  transition: all, ease-in-out .5s;
}
a.footer-links:hover, a.footer-links:focus {
  color: var(--colorwhite);
  text-decoration: underline!important;
}
a.active.footer-links {
  color: var(--colorwhite);
  text-decoration: underline !important;
}
.lined-text {
  text-align: center;
}
.lined-text .line {
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--secondarycolor);
  margin: 0 auto 20px auto;
  border-radius: 5px;
}
.bottomline {
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--secondarycolor);
  margin: 0 auto 20px auto;
  border-radius: 5px;
}
.backtotop {
  text-decoration: none;
  width: 40px;
  height: 40px;
  z-index: 999;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border:2px solid var(--colorwhite);
  border-radius: 100%;
  color: var(--colorwhite);
  background: var(--tertiarycolor);
  cursor: pointer;
  -moz-transition: all, ease-in-out .5s;
  -o-transition: all, ease-in-out .5s;
  -webkit-transition: all, ease-in-out .5s;
  transition: all, ease-in-out .5s;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.backtotop:hover {
  color: var(--primarycolor);
  background: var(--colorwhite);
  border:2px solid var(--colorwhite);
}
.social-media-section {
  display: none;
}
.whatsapp {
  position: fixed;
  z-index: 99999;
  bottom: 100px;
  left: 35px;
}
.effect {
  display: flex;
}
.effect .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.effect a {
  text-decoration: none !important;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 20px;
  font-size: 25px;
  overflow: hidden;
  position: relative;
  color:var(--colorwhite);
  border: 2px solid var(--colorwhite);
}
.effect a svg {
  position: relative;
  z-index: 3;
}
.effect a:last-child {
  margin-right: 0px;
}
.effect a:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.effect a svg {
  display: inline-block;
  vertical-align: middle;
}
.effect.varrius a {
  transition: all 0.2s linear 0s;
}
.effect.varrius a:after {
  content: "";
  display: block;
  width: 90%;
  height: 90%;
  top: -110%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  background-color: var(--colorwhite);
  border-radius: 50%;
}
.effect.varrius a:hover {
  color: var(--primarycolor);
}
.effect.varrius a:hover:after {
  top: 5%;
  transition: all 0.2s linear 0s;
}

/* Buttons */
.primary-button, a.primary-button {
  color: var(--colorwhite);
  background-color: var(--primarycolor);
  border: 1px solid var(--primarycolor);
 border-radius: .25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 12px 14px;
  position: relative;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
}
.primary-button:hover, .primary-button:focus, a.primary-button:hover, a.primary-button:focus {
  color: var(--colorwhite);
  background-color: var(--secondarycolor);
  border: 1px solid var(--secondarycolor);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.primary-button:active, a.primary-button:active {
  color: var(--colorwhite);
  background-color: var(--tertiarycolor);
  border: 1px solid var(--tertiarycolor);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.primary-button-outline, a.primary-button-outline {
  color: var(--primarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--primarycolor);
 border-radius: .25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 12px 14px;
  position: relative;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
}
.primary-button-outline:hover, .primary-button-outline:focus, a.primary-button-outline:hover, a.primary-button-outline:focus {
  color: var(--secondarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--secondarycolor);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.primary-button-outline:active, a.primary-button-outline:active {
  color: var(--tertiarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--tertiarycolor);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.secondary-button, a.secondary-button {
  color: var(--colorwhite);
  background-color: var(--secondarycolor);
  border: 1px solid var(--secondarycolor);
 border-radius: .25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 12px 14px;
  position: relative;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
}
.secondary-button:hover, .secondary-button:focus, a.secondary-button:hover, a.secondary-button:focus {
  color: var(--colorwhite);
  background-color: var(--primarycolor);
  border: 1px solid var(--primarycolor);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.secondary-button:active, a.secondary-button:active {
  color: var(--colorwhite);
  background-color: var(--tertiarycolor);
  border: 1px solid var(--tertiarycolor);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.secondary-button-outline, a.secondary-button-outline {
  color: var(--secondarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--secondarycolor);
 border-radius: .25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 12px 14px;
  position: relative;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
}
.secondary-button-outline:hover, .secondary-button-outline:focus, a.secondary-button-outline:hover, a.secondary-button-outline:focus {
  color: var(--primarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--primarycolor);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.secondary-button-outline:active, a.secondary-button-outline:active {
  color: var(--tertiarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--tertiarycolor);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.white-button, a.white-button {
  color: var(--primarycolor);
  background-color: var(--silver);
  border: 1px solid var(--silver);
 border-radius: .25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 12px 14px;
  position: relative;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
}
.white-button:hover, .white-button:focus, a.white-button:hover, a.white-button:focus {
  color: var(--secondarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--colorwhite);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.white-button:active, a.white-button:active {
  color: var(--tertiarycolor);
  background-color: var(--silver);
  border: 1px solid var(--silver);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.white-button-outline, a.white-button-outline {
  color: var(--silver);
  background-color: transparent;
  border: 1px solid var(--silver);
 border-radius: .25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 12px 14px;
  position: relative;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
}
.white-button-outline:hover, .white-button-outline:focus, a.white-button-outline:hover, a.white-button-outline:focus {
  color: var(--octonarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--colorwhite);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.white-button-outline:active, a.white-button-outline:active {
  color: var(--silver);
  background-color: transparent;
  border: 1px solid var(--silver);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
/* Pages */
main, .main {
  position: relative;
}
.lazy-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: inherit;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--colorwhite);
}
.top-banner {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 575.98px) {
.top-banner {
  position: relative;
  padding: 100px 0px;
}
}
.top-banner .content {
  position: relative;
  z-index: 99;
}
.top-banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #17493A;
  background: -webkit-linear-gradient(180deg, rgba(23, 73, 58, 1) 0%, rgba(255, 255, 255, 0.01) 100%);
  background: -moz-linear-gradient(180deg, rgba(23, 73, 58, 1) 0%, rgba(255, 255, 255, 0.01) 100%);
  background: linear-gradient(180deg, rgba(23, 73, 58, 1) 0%, rgba(255, 255, 255, 0.01) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#17493A", endColorstr="#FFFFFF", GradientType=0);
}
.papercut-wrap {
  position: relative;
  margin-top: -18px;
  line-height: 0;
}
.papercut-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.table {
  vertical-align: middle;
}
/* Hero */
.HomeSliderCarousel{
  height: calc(100vh - 108px);
  min-height: 500px;
 position: relative;
 background: var(--primarycolor);;
}
@media (max-width: 767.98px) {
.HomeSliderCarousel {
  height: calc(100vh - 108px);
}
}
.HomeSliderCarousel .carousel,
.HomeSliderCarousel .carousel-inner,
.HomeSliderCarousel .carousel-item {
  height: 100%;
}
.HomeSliderCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.HomeSliderCarousel .overlay {
  position: absolute;
  inset: 0;
  background: #17493A;
  background: -webkit-linear-gradient(90deg, rgba(23, 73, 58, 1) 0%, rgba(23, 73, 58, 1) 20%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(90deg, rgba(23, 73, 58, 1) 0%, rgba(23, 73, 58, 1) 20%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, rgba(23, 73, 58, 1) 0%, rgba(23, 73, 58, 1) 20%, rgba(255, 255, 255, 0) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#17493A", endColorstr="#FFFFFF", GradientType=1);
  z-index: 1;
}
.HomeSliderCarousel .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  text-align: left;
  width: 100%;
  z-index: 2;
  left: 0;
  right: 0;
  padding: 0;
}
.HomeSliderCarousel .carousel-indicators [data-bs-target]{
  width: 15px;
  height: 15px;
  border-radius: 100%;
  opacity:.2;
  margin-right: 5px;
  margin-left: 5px;
}
.HomeSliderCarousel .carousel-control-prev,
.HomeSliderCarousel .carousel-control-next {
  width: 100px;
  max-width:6.25em;
}
.HomeSliderCarousel .carousel-indicators button.active {
  background-color:var(--secondarycolor);
  opacity:1;
}
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-section .lazy-bg {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.hero-section .lazy-bg .overlay {
  position: absolute;
  inset: 0;
  background: #17493A;
  background: -webkit-linear-gradient(90deg, rgba(23, 73, 58, 1) 0%, rgba(23, 73, 58, 1) 30%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(90deg, rgba(23, 73, 58, 1) 0%, rgba(23, 73, 58, 1) 30%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, rgba(23, 73, 58, 1) 0%, rgba(23, 73, 58, 1) 30%, rgba(255, 255, 255, 0) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#17493A", endColorstr="#FFFFFF", GradientType=1);
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.home-content {
  color: var(--colorwhite);
  z-index: 2;
}
.home-featured-box {
  border-radius: 15px;
  border: 2px solid var(--secondarycolor);
  background: var(--colorwhite);
  padding: 2rem;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}
.home-featured-box:hover {
  border: 2px solid var(--primarycolor);
}
.scroll-wrapper {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: transparent;
}
.scroll-content {
  display: inline-flex;
  align-items: center;
  animation: scroll-left 25s linear infinite;
}
.scroll-content::after {
  content: attr(data-duplicate);
  display: inline-flex;
}
.scroll-content img {
  width: 50px;
  height: 50px;
  margin: 0 20px;
  object-fit: contain;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.trust-section {
  position: relative;
  z-index: 1;
}
.trust-section::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
  width: 170px;
  height: 280px;
  flex-shrink: 0;
  border-radius: 280px;
  background: var(--secondarycolor);
  filter: blur(200px);
  z-index: -1;
  opacity: .4;
}
.trust-thumbnail {
  position: relative;
  z-index: 1;
  width: 100%;
}
.trust-arrow {
  position: absolute;
  right: -50px;
  top: 100px;
}
.mobile-app-screen img{
  width: 350px;
  height: auto;
}
.mobile-navigation-screen{
  width: 550px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.review-card {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.review-icon{
  position: absolute;
  top: -75px;
  right: -30px;
  background: var(--secondarycolor);
  color: var(--colorwhite);
  padding: 10px;
  border-radius: 1px 25px 1px 1px;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.review-icon:hover{
  background: var(--tertiarycolor);
  color: var(--colorwhite);
}
.pricing-card {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.pricing-box-1{
  background: var(--colorwhite);
  color: var(--colorblack);
}
.pricing-box-2{
  background: var(--secondarycolor);
  color: var(--colorwhite);
}
.pricing-box-3{
  background: var(--tertiarycolor);
  color: var(--colorwhite);
}
.pricing-box-4{
  background: var(--primarycolor);
  color: var(--colorwhite);
}
ul.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
ul.pricing-list li span {
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-heading {
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 4px 12px;
  font-size: 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  color: var(--colorwhite);
  background: var(--colorblack);
}
.reassurance {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;  
  justify-content: center;
  align-items: center;
  column-gap: 12px;   
  row-gap: 0;         
}
ul.reassurance li {
  white-space: nowrap; 
}
ul.reassurance li span.badge {
  font-size: 16px;
  font-weight: 500;
  padding: 1em;
}
.price-topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;  
  column-gap: 12px;   
  row-gap: 0;         
}
.price-topics li {
  white-space: nowrap; 
}
.price-topics li::before {
  content: "•";
  margin-right: 10px;
  color:var(--colorblack);
  font-weight: bold;
}
.price-topics li:last-child::after {
  content: "";
}
.custom-accordion-outline .accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  background: var(--silver);
  color: var(--primarycolor);
}
.custom-accordion-outline .accordion .accordion-button {
  color: var(--octonarycolor);
  font-size: 14px;
  font-weight:500;
 border-radius:.25rem;
 -webkit-border-radius:.25rem;
 -moz-border-radius:.25rem;
}
.custom-accordion-outline .accordion .accordion-button:hover {
  color: var(--octonarycolor);
}
.custom-accordion-outline .accordion .accordion-button:focus {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
}
.custom-accordion-outline .accordion .accordion-item {
  color: inherit;
  margin-bottom: 15px;
  border: none;
 border-radius:.25rem;
 -webkit-border-radius:.25rem;
 -moz-border-radius:.25rem;
  border: 1px solid var(--primarycolor);
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}
.custom-accordion-outline .accordion .accordion-item:hover {
  border: 1px solid var(--secondarycolor);
}
.custom-accordion-outline .accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
 border: 1px solid var(--primarycolor);
}
ul.two-column-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.two-column-list li {
  flex: 1 1 45%;
  max-width: 500px;
}
.support-box{
  background: var(--secondarycolor);
  color: var(--colorwhite);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.support-box:hover {
  background: var(--primarycolor);
  transform: translateY(-5px);
}
.featured-content{
  position: relative;
  padding: 4em;
  margin-left: -100px;
  background: var(--silver);
  border-radius: .25rem;
}
@media (max-width: 991.98px) {
.featured-content{
  margin-left: 0px;
}
}
.team-picture img {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 500px 500px 10px 10px;
}
.about-modal .custom-button-close{
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
  color: var(--colorwhite);
  background: transparent;
  border: none;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  cursor: pointer;
}
.about-modal .custom-button-close:hover{
  color: var(--secondarycolor);
  background: transparent;
}
.team-arrow{
  background:var(--secondarycolor);
  color: var(--colorwhite);
  border-radius: 100px;
  width: 50px;
  height: 50px;
  text-align: center;
  position: absolute;
  right: 15px;
  top: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  cursor: pointer;
}
.team-arrow:hover{
  background:  var(--primarycolor);
}
.before-heading{
  background: rgba(0, 0, 0, 0.5);
  color: var(--colorwhite);
  position: absolute;
  top: 15px;
  left: 0px;
  padding: 10px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0px .25rem .25rem 0px;
}
.after-heading{
  background: rgba(0, 0, 0, 0.5);
  color: var(--colorwhite);
  position: absolute;
  top: 15px;
  right: 0px;
  padding: 10px;
  font-weight: 600;
  font-size: 14px;
  border-radius: .25rem 0px 0px .25rem;
}
.light-green-background{
  background:#f2f8f6;
}
.plain-tabs .nav-pills .nav-link {
  background: var(--colorwhite);
  border: none;
  border: 1px solid var(--tertiarycolor);
  color: var(--tertiarycolor);
  border-radius: 0;
  transition: border-color 0.3s ease;
  padding:0.75em 1em;
  font-weight: 400;
  font-size: 14px;
  border-radius: 50px;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.plain-tabs .nav-pills .nav-link:hover {
  border: 1px solid var(--secondarycolor);
  color: var(--colorwhite);
  background: var(--secondarycolor);
}
.plain-tabs .nav-pills .nav-link.active {
  border: 1px solid var(--primarycolor);
  color: var(--colorwhite);
  background: var(--primarycolor);
}
.plain-tabs .who-circle {
  background: var(--tertiarycolor);
  border-radius: 50px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: rgb(255, 255, 255);
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plain-tabs .nav-pills .nav-link:hover .who-circle{
    background: var(--primarycolor);
}
.plain-tabs .nav-pills .nav-link.active .who-circle{
    background: var(--secondarycolor);
}
.how-works-floating-content {
  position: absolute;
  border-radius: 5px;
  background: linear-gradient(250deg,rgba(166, 206, 57, 0.7) 0%,rgba(166, 206, 57, 0.7) 100%);
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  backdrop-filter: blur(7px);
  padding: 15px 20px;
  color: var(--colorwhite);
  text-align: center;
}
.how-works-floating-content.floating-position {
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  z-index: 99;
}
.floating-up-down {
  animation: floatUpDown 4s ease-in-out infinite;
}
@keyframes floatUpDown {
  0%   { transform: translate(-50%, 0); }
  50%  { transform: translate(-50%, -10px); }
  100% { transform: translate(-50%, 0); }
}
.features-grid {
  list-style: none;
  padding: 0;
  margin:0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.features-grid li {
  background: var(--primarycolor);
  border-radius: 8px;
  padding: 18px 20px;
  color:  var(--colorwhite);
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  border: 2px solid  var(--secondarycolor);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column; 
  gap: 10px;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.features-grid li img {
  object-fit: contain;
}
.features-grid li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border: 2px solid  var(--tertiarycolor);
}
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.how-works-arrow {
  position: relative;
}
.how-works-arrow:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25%; 
  right: -15%;             
  transform: translateY(-50%);
  width: 125px;    
  height: 23px;          
  background-image: url("../images/icons/process-shape.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .how-works-arrow:not(:last-child)::after {
    display: none !important;
  }
}
.how-works-floating-content.banner-movement {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
  z-index: 99;
}
.how-works-floating-content.feature-movement {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  z-index: 99;
}