:root {
  --bs-blue: #3f78e0;
  --bs-indigo: #563fe0;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #e2626b;
  --bs-orange: #ee6034;
  --bs-yellow: #fab758;
  --bs-green: #225253;
  --bs-teal: #6bbea3;
  --bs-cyan: #42c8c6;
  --bs-offwhite: #fefefe;
  --bs-white: #fff;
  --bs-black: #000;
  --bs-gray-100: #e4e7e7;
  --bs-gray-200: #c9cfcf;
  --bs-gray-300: #afb6b6;
  --bs-gray-400: #959d9d;
  --bs-gray-500: #7a8585;
  --bs-gray-600: #626a6a;
  --bs-gray-700: #495050;
  --bs-gray-800: #303636;
  --bs-gray-900: #262b2b;
  --bs-gray: #626a6a;
  --bs-gray-light: #959d9d;
  --bs-gray-dark: #495050;
  --bs-gray-blue: #f1f5fd;
  --bs-gray-teal: #e7f5f0;
  --bs-gray-yellow: #fef3e4;
  --bs-gray-red: #fae6e7;
  --bs-gray-cyan: #f3f7f7;
  --bs-primary: var(--bs-cyan);
  --bs-secondary: var(--bs-green);
  --bs-success: var(--bs-teal);
  --bs-success-light: var(--bs-gray-teal);
  --bs-info: var(--bs-blue);
  --bs-info-light: var(--bs-gray-blue);
  --bs-warning: var(--bs-yellow);
  --bs-warning-light: var(--bs-gray-yellow);
  --bs-danger: var(--bs-red);
  --bs-danger-light: var(--bs-gray-red);
  --bs-light: var(--bs-gray-cyan);
  --bs-dark: var(--bs-gray-900);
  --bs-primary-rgb: 66, 200, 198;
  --bs-secondary-rgb: 34, 82, 83;
  --bs-success-rgb: 107, 190, 163;
  --bs-info-rgb: 63, 120, 224;
  --bs-warning-rgb: 250, 183, 88;
  --bs-danger-rgb: 226, 98, 107;
  --bs-light-rgb: 243, 247, 247;
  --bs-dark-rgb: 38, 43, 43;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 98, 106, 106;
  --bs-body-bg-rgb: 254, 254, 254;
  --bs-font-sans-serif: "Inter", sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.65;
  --bs-body-color: var(--bs-gray);
  --bs-body-bg: var(--bs-offwhite);
  --bs-body-text-align: left;
  --bs-rounded: 0.5rem;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}
:focus,
:focus-visible {
  outline: 0.125rem solid;
  border-radius: 0.25rem;
}

body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) input:focus,
body:not(.user-is-tabbing) select:focus,
body:not(.user-is-tabbing) textarea:focus,
body:not(.user-is-tabbing) a:focus {
  outline: 0;
}

::-moz-selection {
  background: #4f7373;
  color: #fff;
}

::selection {
  background: #4f7373;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  color: #303636;
  font-weight: 600;
  line-height: 1.25;
}

p {
  margin-bottom: 2rem;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
  margin-bottom: 0;
}

a {
  color: #ee6034;
  text-decoration: none;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
a:hover, a:focus, a:active {
  color: #225253;
  text-decoration: underline;
}

.hover {
  position: relative;
  display: inline-block;
  text-decoration: none !important;
}
.hover::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.hover:hover::before {
  transform-origin: 0 50%;
  transform: scale3d(1, 1, 1);
  transition-timing-function: cubic-bezier(0.4, 1, 0.8, 1);
}

img,
svg {
  max-width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

hr {
  color: inherit;
  background-color: rgba(0, 0, 0, 0.1);
  border: 0;
  opacity: 1;
}
hr.hr-vertical {
  height: 100%;
  width: 1px;
  margin: 0 auto;
}

[class*=display-] {
  color: #225253;
  font-weight: 600;
  line-height: 1.25;
}

.section-top-gutter {
  padding-top: 6rem;
}
@media (max-width: 991px) {
  .section-top-gutter {
    padding-top: 4rem;
  }
}

.section-bottom-gutter {
  padding-bottom: 6rem;
}
@media (max-width: 991px) {
  .section-bottom-gutter {
    padding-bottom: 4rem;
  }
}

.section-top-gutter-negative {
  margin-top: -6rem;
}
@media (max-width: 991px) {
  .section-top-gutter-negative {
    margin-top: -4rem;
  }
}

.section-bottom-gutter-negative {
  margin-bottom: -6rem;
}
@media (max-width: 991px) {
  .section-bottom-gutter-negative {
    margin-bottom: -4rem;
  }
}

@media (max-width: 767px) {
  .lead {
    font-size: 1.125rem;
  }
}

.tooltip .tooltip-inner {
  text-align: left;
}

.ratio {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  text-decoration: none !important;
}
.ratio.ratio-21-9 {
  --bs-aspect-ratio: calc((9/21) * 100%);
}
.ratio.ratio-16-9 {
  --bs-aspect-ratio: calc((9/16) * 100%);
}
.ratio.ratio-4-3 {
  --bs-aspect-ratio: calc((3/4) * 100%);
}
.ratio.ratio-3-2 {
  --bs-aspect-ratio: calc((2/3) * 100%);
}
.ratio.ratio-1-1 {
  --bs-aspect-ratio: calc((1/1) * 100%);
}
.ratio.ratio-2-3 {
  --bs-aspect-ratio: calc((3/2) * 100%);
}
.ratio.ratio-3-4 {
  --bs-aspect-ratio: calc((4/3) * 100%);
}
.ratio img,
.ratio video {
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: cover;
     object-fit: cover;
}

.rounded {
  border-radius: var(--bs-rounded) !important;
}

.shadow {
  box-shadow: 0 0 1.25rem rgba(4, 55, 56, 0.03) !important;
}

.shadow-sm {
  box-shadow: 0 0.25rem 0.75rem rgba(4, 55, 56, 0.03) !important;
}

.shadow-lg {
  box-shadow: 0 0.25rem 1.75rem rgba(4, 55, 56, 0.06) !important;
}

.button-reset {
  padding: 0;
  border: 0;
  background: transparent;
}

.hidden {
  visibility: hidden;
}

.auto-height {
  height: auto !important;
}

.height-100 {
  height: 100% !important;
}

.currentColor {
  color: currentColor;
}

.bg-offwhite-primary {
  background-color: #fefefe;
}

.bg-offwhite-primary-v2 {
  background-color: #fcfcfc;
}

.bg-offwhite-primary-v3 {
  background-color: #fafafa;
}

.bg-soft-primary {
  background-color: #f3f7f7;
}

.bg-soft-primary-gradient {
  background: linear-gradient(to bottom, #fefefe 0%, #f3f7f7 100%);
}

.bg-medium-primary {
  background-color: #4f7373;
}

.bg-medium-primary-gradient {
  background: linear-gradient(to bottom, #fefefe 0%, #4f7373 100%);
}

.bg-hard-primary {
  background-color: #262b2b;
}

.bg-hard-primary-gradient {
  background: linear-gradient(to bottom, #fefefe 0%, #262b2b 100%);
}

.z-index-0 {
  z-index: 0 !important;
}

.z-index-1 {
  z-index: 1 !important;
}

.z-index-2 {
  z-index: 2 !important;
}

.z-index-3 {
  z-index: 3 !important;
}

.z-index-4 {
  z-index: 4 !important;
}

.z-index-5 {
  z-index: 5 !important;
}

.fw-300 {
  font-weight: 300;
}

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

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

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fs-7 {
  font-size: 0.875rem;
}

.fs-8 {
  font-size: 0.75rem;
}

.border,
.border-top,
.border-bottom,
.border-start,
.border-end {
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.text-spacing-xs {
  letter-spacing: 0.025em;
}

.text-spacing-sm {
  letter-spacing: 0.05em;
}

.text-spacing-md {
  letter-spacing: 0.075em;
}

.text-spacing-lg {
  letter-spacing: 0.1em;
}

.text-spacing-xl {
  letter-spacing: 0.15em;
}

.text-spacing-xxl {
  letter-spacing: 0.2em;
}

.animated {
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.btn-ghost, .btn-cta, .btn-quaternary, .btn-tertiary, .btn-secondary, .btn-primary, .btn {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0.75em 1.5em;
  border: 2px solid transparent;
  background-color: transparent;
  color: inherit;
  font-weight: 600;
  font-size: var(--bs-body-font-size);
  font-family: inherit;
  line-height: 1.25;
  text-align: center;
  text-decoration: none !important;
  border-radius: var(--bs-rounded);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.btn-ghost:focus, .btn-cta:focus, .btn-quaternary:focus, .btn-tertiary:focus, .btn-secondary:focus, .btn-primary:focus, .btn:focus {
  box-shadow: none;
}
.btn-ghost:hover, .btn-cta:hover, .btn-quaternary:hover, .btn-tertiary:hover, .btn-secondary:hover, .btn-primary:hover, .btn:hover, .btn-ghost:active, .btn-cta:active, .btn-quaternary:active, .btn-tertiary:active, .btn-secondary:active, .btn-primary:active, .btn:active, .active.btn-ghost, .active.btn-cta, .active.btn-quaternary, .active.btn-tertiary, .active.btn-secondary, .active.btn-primary, .active.btn {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
}
.btn-ghost:hover:focus, .btn-cta:hover:focus, .btn-quaternary:hover:focus, .btn-tertiary:hover:focus, .btn-secondary:hover:focus, .btn-primary:hover:focus, .btn:hover:focus, .btn-ghost:active:focus, .btn-cta:active:focus, .btn-quaternary:active:focus, .btn-tertiary:active:focus, .btn-secondary:active:focus, .btn-primary:active:focus, .btn:active:focus, .active.btn-ghost:focus, .active.btn-cta:focus, .active.btn-quaternary:focus, .active.btn-tertiary:focus, .active.btn-secondary:focus, .active.btn-primary:focus, .active.btn:focus {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
}
@media (hover: hover) {
  .btn-ghost, .btn-cta, .btn-quaternary, .btn-tertiary, .btn-secondary, .btn-primary, .btn {
    transform: translateY(0);
  }
  .btn-ghost:hover, .btn-cta:hover, .btn-quaternary:hover, .btn-tertiary:hover, .btn-secondary:hover, .btn-primary:hover, .btn:hover, .btn-ghost:active, .btn-cta:active, .btn-quaternary:active, .btn-tertiary:active, .btn-secondary:active, .btn-primary:active, .btn:active {
    transform: translateY(-0.25rem);
  }
}

.btn-small {
  font-size: 0.875rem;
}

.btn-big {
  font-size: 1.125rem;
}

.btn-primary {
  border-color: #42c8c6;
  background-color: #42c8c6;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
  border-color: #3aadab;
  background-color: #3aadab;
  color: #fff;
}
.btn-primary:focus-visible {
  outline-color: rgba(66, 200, 198, 0.5);
  outline-width: 0.25rem;
  outline-offset: 0;
}

.btn-secondary {
  border-color: #225253;
  background-color: #225253;
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary.active {
  border-color: #043738;
  background-color: #043738;
  color: #fff;
}
.btn-secondary:focus-visible {
  outline-color: rgba(34, 82, 83, 0.5);
  outline-width: 0.25rem;
  outline-offset: 0;
}

.btn-tertiary {
  border-color: #4f7373;
  background-color: #4f7373;
  color: #fff;
}
.btn-tertiary:hover, .btn-tertiary:focus, .btn-tertiary:active, .btn-tertiary.active {
  border-color: #3a5555;
  background-color: #3a5555;
  color: #fff;
}
.btn-tertiary:focus-visible {
  outline-color: rgba(79, 115, 115, 0.5);
  outline-width: 0.25rem;
  outline-offset: 0;
}

.btn-quaternary {
  border-color: #303636;
  background-color: #303636;
  color: #fff;
}
.btn-quaternary:hover, .btn-quaternary:focus, .btn-quaternary:active, .btn-quaternary.active {
  border-color: #181b1b;
  background-color: #181b1b;
  color: #fff;
}
.btn-quaternary:focus-visible {
  outline-color: rgba(48, 54, 54, 0.5);
  outline-width: 0.25rem;
  outline-offset: 0;
}

.btn-cta {
  border-color: #ee6034;
  background-color: #ee6034;
  color: #fff;
}
.btn-cta:hover, .btn-cta:focus, .btn-cta:active, .btn-cta.active {
  border-color: #e64513;
  background-color: #e64513;
  color: #fff;
}
.btn-cta:focus-visible {
  outline-color: rgba(238, 96, 52, 0.5);
  outline-width: 0.25rem;
  outline-offset: 0;
}

.btn-ghost {
  border-color: #262b2b;
  color: #262b2b;
  box-shadow: none !important;
}
.btn-ghost:hover, .btn-ghost:focus, .btn-ghost:active, .btn-ghost.active {
  border-color: #ee6034;
  color: #ee6034;
}
.btn-ghost:focus-visible {
  outline-color: rgba(238, 96, 52, 0.5);
  outline-width: 0.25rem;
  outline-offset: 0;
}

.btn-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  text-decoration: none !important;
  color: #262b2b;
  font-weight: 500;
}
.btn-link::after {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f138";
  margin-left: 0.5em;
  font-size: 1.125em;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-property: transform;
}
.btn-link:hover, .btn-link:active {
  color: #ee6034;
}
.btn-link:hover::after, .btn-link:active::after {
  transform: translateX(0.5em);
}

.side-navigation {
  width: 320px;
  border-right: 0;
  background-color: #fefefe;
}
.side-navigation .btn-close {
  box-shadow: none;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.side-navigation .offcanvas-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.side-navigation .offcanvas-navigation .nav-item {
  width: 100%;
}
.side-navigation .offcanvas-navigation .nav-item + .nav-item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.side-navigation .offcanvas-navigation .nav-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.side-navigation .offcanvas-navigation .nav-item.subnav-item:last-child {
  border-bottom: 0;
}
.side-navigation .offcanvas-navigation .nav-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-weight: 500;
  color: #262b2b;
  text-decoration: none !important;
  box-shadow: none;
  border-radius: 0;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.side-navigation .offcanvas-navigation .nav-link:hover, .side-navigation .offcanvas-navigation .nav-link:active {
  color: #42c8c6;
}
.side-navigation .offcanvas-navigation .nav-link.active, .side-navigation .offcanvas-navigation .nav-link.show {
  color: #225253;
}
.side-navigation .offcanvas-navigation .nav-link.accordion-button::after {
  display: none;
}
.side-navigation .offcanvas-navigation .nav-link.accordion-button i {
  transition: inherit;
}
.side-navigation .offcanvas-navigation .nav-link.accordion-button:focus {
  box-shadow: none;
}
.side-navigation .offcanvas-navigation .nav-link.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #225253;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
}
.side-navigation .offcanvas-navigation .nav-link.accordion-button:not(.collapsed) i {
  transform: rotate(-180deg);
}
.side-navigation .offcanvas-navigation .subnav-link {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.side-navigation .offcanvas-navigation .subnav-link:hover .subnav-title::after, .side-navigation .offcanvas-navigation .subnav-link:focus .subnav-title::after, .side-navigation .offcanvas-navigation .subnav-link:active .subnav-title::after {
  transform: translateX(0.5em);
}
.side-navigation .offcanvas-navigation .subnav-link .subnav-title {
  display: flex;
  align-items: center;
}
.side-navigation .offcanvas-navigation .subnav-link .subnav-title:not(:last-child) {
  margin-bottom: 0.125rem;
}
.side-navigation .offcanvas-navigation .subnav-link .subnav-title::after {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f138";
  margin-left: 0.5em;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-property: transform;
}
.side-navigation .offcanvas-navigation .subnav-link .subnav-desctiption {
  color: #626a6a;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.5;
}

.modal-backdrop {
  z-index: 1040;
}
.modal-backdrop.show {
  opacity: 0.75;
}

.modal-dialog .modal-content {
  border: 0;
  border-radius: var(--bs-rounded);
}
.modal-dialog .modal-header,
.modal-dialog .modal-footer {
  border: 0;
}
.modal-dialog .btn-close {
  box-shadow: none;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

@media (max-width: 1199px) {
  .login-register-modal {
    background-color: #f3f7f7;
  }
}
@media (min-width: 576px) {
  .login-register-modal .modal-dialog {
    max-width: 450px;
  }
}
.login-register-modal .modal-content {
  background-color: #fefefe;
}
@media (max-width: 1199px) {
  .login-register-modal .modal-content {
    box-shadow: 0rem 0.25rem 1.75rem rgba(0, 0, 0, 0.05);
  }
}
.login-register-modal .modal-body {
  font-size: 0.875rem;
}
@media (min-width: 576px) {
  .login-register-modal .modal-body {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.login-register-modal .modal-footer {
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 4rem;
  font-size: 0.875rem;
}
.login-register-modal .modal-footer > * {
  margin: 0;
}

.form label[for]:hover {
  cursor: pointer;
}
.form .form-remark,
.form .form-label {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.25;
}
.form .form-control,
.form .form-select {
  height: 3rem;
  padding: 0.5rem 1rem;
  color: #959d9d;
  font-weight: 300;
  background-color: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: var(--bs-rounded);
  vertical-align: middle;
  text-overflow: ellipsis;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.form .form-control::-moz-placeholder, .form .form-select::-moz-placeholder {
  color: #959d9d;
  opacity: 1;
  -moz-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.form .form-control::placeholder,
.form .form-select::placeholder {
  color: #959d9d;
  opacity: 1;
  transition: color 0.2s ease;
}
.form .form-control:focus,
.form .form-select:focus {
  color: #495050;
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 1rem rgba(4, 55, 56, 0.03);
}
.form .form-control:focus::-moz-placeholder, .form .form-select:focus::-moz-placeholder {
  color: #626a6a;
  opacity: 1;
}
.form .form-control:focus::placeholder,
.form .form-select:focus::placeholder {
  color: #626a6a;
  opacity: 1;
}
.form .form-control.is-invalid,
.form .form-select.is-invalid {
  border-color: #e2626b;
}
.form .form-control.is-invalid:focus,
.form .form-select.is-invalid:focus {
  border-color: #fae6e7;
  box-shadow: 0 0 0 0.25rem rgba(226, 98, 107, 0.5);
}
.was-validated .form-control:invalid {
  border-color: #e2626b;
}
.was-validated .form-control:invalid:focus {
  border-color: #fae6e7;
  box-shadow: 0 0 0 0.25rem rgba(226, 98, 107, 0.5);
}

.form .form-control.is-valid,
.form .form-select.is-valid {
  border-color: #6bbea3;
}
.form .form-control.is-valid:focus,
.form .form-select.is-valid:focus {
  border-color: #e7f5f0;
  box-shadow: 0 0 0 0.25rem rgba(226, 98, 107, 0.5);
}
.was-validated .form-control:valid {
  border-color: #6bbea3;
}
.was-validated .form-control:valid:focus {
  border-color: #e7f5f0;
  box-shadow: 0 0 0 0.25rem rgba(107, 190, 163, 0.5);
}

.form textarea.form-control {
  min-height: 4rem;
  height: 8rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.form .form-select {
  cursor: pointer;
}
.form .form-check {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.form .form-check .form-check-input {
  margin-top: 0;
  margin-right: 0.5em;
  border-color: rgba(0, 0, 0, 0.15);
}
.form .form-check .form-check-input:checked {
  background-color: #959d9d;
  border-color: #959d9d;
}
.form .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
}
.form .form-check .form-check-label {
  color: #626a6a !important;
}
.form .form-range {
  height: 1.125rem;
}
.form .form-range::-webkit-slider-thumb {
  background: #fff;
  border: 3px solid #4f7373;
  cursor: pointer;
}
.form .form-range::-moz-range-thumb {
  background: #fff;
  border: 3px solid #4f7373;
  cursor: pointer;
}
.form .form-range::-webkit-slider-runnable-track {
  background: rgba(38, 43, 43, 0.15);
}
.form .form-range::-moz-range-track {
  background: rgba(38, 43, 43, 0.15);
}
.form .form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 0.25rem rgba(79, 115, 115, 0.3);
}
.form .form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 0.25rem rgba(79, 115, 115, 0.3);
}
.form .btn-submit {
  height: 3rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.form .valid-feedback,
.form .invalid-feedback {
  font-weight: 500;
  font-size: 0.875rem;
}
.form .valid-feedback {
  color: #6bbea3;
}
.form .invalid-feedback {
  color: #e2626b;
}
.footer .form .form-control {
  background-color: var(--bs-gray-800);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--bs-gray-300);
}
.footer .form .form-control::-moz-placeholder {
  color: var(--bs-gray-300);
  opacity: 1;
}
.footer .form .form-control::placeholder {
  color: var(--bs-gray-300);
  opacity: 1;
}
.footer .form .form-control:focus {
  color: var(--bs-gray-200);
  background-color: var(--bs-gray-700);
  border-color: rgba(255, 255, 255, 0.3);
}
.footer .form .form-control:focus::-moz-placeholder {
  color: var(--bs-gray-200);
  opacity: 1;
}
.footer .form .form-control:focus::placeholder {
  color: var(--bs-gray-200);
  opacity: 1;
}

.form .price-range-tooltip {
  display: block;
  position: absolute;
  bottom: 150%;
  left: -1.75rem;
  width: 4.5rem;
  height: 1.5rem;
  background-color: #6bbea3;
  border-radius: var(--bs-rounded);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.form .price-range-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -0.5rem;
  margin-top: -0.125rem;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid #6bbea3;
}

.rectangle-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 50%;
  height: 60%;
  margin: auto;
  pointer-events: none;
}
.rectangle-shape.bg-soft-danger {
  background-color: #fae6e7;
}
.rectangle-shape.bg-soft-success {
  background-color: #e7f5f0;
}
.rectangle-shape.bg-soft-warning {
  background-color: #fef3e4;
}
.rectangle-shape.bg-soft-info {
  background-color: #f1f5fd;
}

.rectangle-shape-dots {
  margin: 0;
  padding: 0;
  width: 8rem;
  height: 10rem;
  background-size: 1rem 1rem;
  pointer-events: none;
}
.rectangle-shape-dots.bg-soft-danger {
  background-image: radial-gradient(#e2626b 0.125rem, transparent 0.125rem);
}
.rectangle-shape-dots.bg-soft-success {
  background-image: radial-gradient(#6bbea3 0.125rem, transparent 0.125rem);
}
.rectangle-shape-dots.bg-soft-warning {
  background-image: radial-gradient(#fab758 0.125rem, transparent 0.125rem);
}
.rectangle-shape-dots.bg-soft-info {
  background-image: radial-gradient(#3f78e0 0.125rem, transparent 0.125rem);
}
.rectangle-shape-dots.bg-soft-cta {
  background-image: radial-gradient(#ee6034 0.125rem, transparent 0.125rem);
}
.pricing-section .rectangle-shape-dots {
  top: -20%;
  right: -5%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pricing-section .rectangle-shape-dots {
    right: -0.5rem;
  }
}

.pricing-features-section .rectangle-shape-dots {
  top: -9%;
  right: 4.5%;
}
@media (max-width: 1399px) {
  .pricing-features-section .rectangle-shape-dots {
    right: 0;
  }
}

.circle-shape-stripes {
  margin: 0;
  padding: 0;
  width: 10rem;
  height: 10rem;
  pointer-events: none;
}
.circle-shape-stripes.bg-soft-danger {
  background: repeating-linear-gradient(-55deg, rgba(255, 255, 255, 0) 0.8px, #e2626b 1.6px, #e2626b 3px, rgba(255, 255, 255, 0) 3.8px, rgba(255, 255, 255, 0) 10px);
}
.circle-shape-stripes.bg-soft-success {
  background: repeating-linear-gradient(-55deg, rgba(255, 255, 255, 0) 0.8px, #6bbea3 1.6px, #6bbea3 3px, rgba(255, 255, 255, 0) 3.8px, rgba(255, 255, 255, 0) 10px);
}
.circle-shape-stripes.bg-soft-warning {
  background: repeating-linear-gradient(-55deg, rgba(255, 255, 255, 0) 0.8px, #fab758 1.6px, #fab758 3px, rgba(255, 255, 255, 0) 3.8px, rgba(255, 255, 255, 0) 10px);
}
.circle-shape-stripes.bg-soft-info {
  background: repeating-linear-gradient(-55deg, rgba(255, 255, 255, 0) 0.8px, #3f78e0 1.6px, #3f78e0 3px, rgba(255, 255, 255, 0) 3.8px, rgba(255, 255, 255, 0) 10px);
}
.circle-shape-stripes.bg-soft-cta {
  background: repeating-linear-gradient(-55deg, rgba(255, 255, 255, 0) 0.8px, #ee6034 1.6px, #ee6034 3px, rgba(255, 255, 255, 0) 3.8px, rgba(255, 255, 255, 0) 10px);
}
.pricing-section .circle-shape-stripes {
  bottom: 5%;
  left: -5%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pricing-section .circle-shape-stripes {
    left: -0.5rem;
  }
}

.pricing-features-section .circle-shape-stripes {
  bottom: 5%;
  left: 0.75rem;
  width: 14rem;
  height: 14rem;
}
@media (max-width: 1399px) {
  .pricing-features-section .circle-shape-stripes {
    left: -1rem;
  }
}

.shapes-bg {
  bottom: -1rem;
  pointer-events: none;
}
.shapes-bg.opacity-005 {
  opacity: 0.05;
}
.shapes-bg.w-97 {
  max-width: 97%;
}

.icon-list {
  list-style: none;
}
.icon-list li {
  position: relative;
}
.icon-list li::before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0.125rem;
  left: -2rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  font-size: 1.125rem;
}
.icon-list.checkmark li::before {
  content: "\f26e";
}
.icon-list.xmark li::before {
  content: "\f62a";
}
.icon-list.bullet-danger li::before {
  background-color: #fae6e7;
  color: #e2626b;
}
.icon-list.bullet-success li::before {
  background-color: #e7f5f0;
  color: #6bbea3;
}
.icon-list.bullet-warning li::before {
  background-color: #fef3e4;
  color: #fab758;
}
.icon-list.bullet-info li::before {
  background-color: #f1f5fd;
  color: #3f78e0;
}

.accordion .accordion-button {
  justify-content: space-between;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  color: #262b2b;
  font-weight: 500;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.accordion .accordion-button .accordion-icon {
  font-size: 1.25em;
  line-height: 1;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-property: transform;
}
.accordion .accordion-button::after {
  display: none;
}
.accordion .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #4f7373;
  box-shadow: none;
}
.accordion .accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(-180deg);
}
.accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: 0 0 0 0.25rem rgba(79, 115, 115, 0.5);
}
.accordion .accordion-body {
  padding: 1.25rem 1.5rem;
}

.table {
  --bs-table-color: var(--bs-body-color);
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-dark);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: var(--bs-dark);
  --bs-table-active-bg: rgba(0, 0, 0, 0.05);
  --bs-table-hover-color: var(--bs-dark);
  --bs-table-hover-bg: rgba(0, 0, 0, 0.05);
  color: var(--bs-table-color);
  border-color: rgba(0, 0, 0, 0.1);
}
.table > :not(caption) > * > * {
  padding: 0.75rem 1.5rem;
}
.table * {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

.header {
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}
.header.header-scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0.25rem 0.75rem rgba(4, 55, 56, 0.03);
}
.header.header-scrolled .header-desktop .dropdown-menu {
  background-color: rgba(255, 255, 255, 0.98);
}
.header .header-desktop .nav-link {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  font-weight: 500;
  color: #262b2b;
  text-decoration: none !important;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
@media (max-width: 1399px) {
  .header .header-desktop .nav-link {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
.header .header-desktop .nav-link:hover, .header .header-desktop .nav-link:active {
  color: #42c8c6;
}
.header .header-desktop .nav-link.active, .header .header-desktop .nav-link.show {
  color: #225253;
}
.header .header-desktop .subnav-link {
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.header .header-desktop .subnav-link:hover .subnav-title::after, .header .header-desktop .subnav-link:focus .subnav-title::after, .header .header-desktop .subnav-link:active .subnav-title::after {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(0);
}
.header .header-desktop .subnav-link .subnav-title {
  display: flex;
  align-items: center;
}
.header .header-desktop .subnav-link .subnav-title::after {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f138";
  margin-left: 0.5em;
  transform: translateX(-1.5rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
.header .header-desktop .subnav-link .subnav-desctiption {
  color: #626a6a;
  font-weight: 300;
  font-size: 0.875rem;
}
.header .header-desktop .dropdown-toggle::after {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f282";
  border: none;
  margin-top: 0.1em;
  margin-left: 0.5em;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-property: transform;
}
.header .header-desktop .dropdown-toggle.show::after {
  transform: rotate(-180deg);
}
.header .header-desktop .dropdown-menu {
  display: block;
  top: 150% !important;
  left: 0;
  right: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  border-color: rgba(0, 0, 0, 0.1);
  padding: 2rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
.header .header-desktop .dropdown-menu.show {
  top: -0.25rem !important;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.header .header-desktop .dropdown-menu.show::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100vh;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}
.header .header-mobile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 60px;
}
@media (max-width: 359px) {
  .header .header-mobile .header-logo img {
    width: 60vw;
    margin-bottom: 0.9375vw;
  }
}
.header .header-mobile .header-actions {
  color: #225253;
}
.header .header-mobile .header-account {
  line-height: 1;
}
.header .header-mobile .header-account .header-account-trigger {
  color: inherit;
  font-size: 22px;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.header .header-mobile .header-account .header-account-trigger:hover, .header .header-mobile .header-account .header-account-trigger:active {
  color: #4f7373;
}
.header .header-mobile .header-account .dropdown-menu {
  padding: 0;
  color: #262b2b;
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 0;
  text-align: center;
  transform: none !important;
  top: 150% !important;
  bottom: auto !important;
  right: 0 !important;
  left: auto !important;
}
.header .header-mobile .header-account .dropdown-menu .nav-item + .nav-item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.header .header-mobile .header-account .dropdown-menu .nav-link {
  width: 100%;
  padding: 1rem;
  color: #262b2b;
}
.header .header-mobile .header-account .dropdown-menu .nav-link:hover, .header .header-mobile .header-account .dropdown-menu .nav-link:active {
  color: #42c8c6;
}
.header .header-mobile .header-navigation {
  line-height: 1;
}
.header .header-mobile .header-navigation .header-navigation-trigger {
  color: inherit;
  font-size: 28px;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.header .header-mobile .header-navigation .header-navigation-trigger:hover, .header .header-mobile .header-navigation .header-navigation-trigger:active {
  color: #4f7373;
}

.hero {
  padding-top: 10rem;
}
@media (max-width: 1199px) {
  .hero {
    padding-top: 8rem;
  }
}

.home-hero-section {
  margin-bottom: -10rem;
  padding-bottom: 16rem;
}
@media (max-width: 1199px) {
  .home-hero-section {
    margin-bottom: -12rem;
  }
}
@media (max-width: 575px) {
  .home-hero-section {
    margin-bottom: -20%;
    padding-bottom: 30%;
  }
}

.pricing-hero-section {
  margin-bottom: -10rem;
  padding-bottom: 18rem;
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .pricing-hero-section {
    margin-bottom: -10%;
    padding-bottom: 20%;
  }
}
@media (max-width: 1199px) {
  .pricing-hero-section {
    margin-bottom: -12rem;
    padding-bottom: 18rem;
  }
}
@media (max-width: 767px) {
  .pricing-hero-section {
    padding-bottom: 15rem;
  }
}
@media (max-width: 575px) {
  .pricing-hero-section {
    padding-bottom: 14rem;
  }
}

@media (max-width: 1199px) {
  .features-hero-section {
    padding-bottom: 0;
  }
}
.features-hero-section p {
  width: 100%;
  max-width: 550px;
}
@media (max-width: 1199px) {
  .features-hero-section p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1200px) {
  .features-category-hero-section {
    padding-bottom: 7rem;
  }
}

.features-single-page-hero-section {
  margin-bottom: -10rem;
  padding-bottom: 17rem;
}
@media (max-width: 1199px) {
  .features-single-page-hero-section {
    margin-bottom: -10rem;
    padding-bottom: 15rem;
  }
}
@media (max-width: 575px) {
  .features-single-page-hero-section {
    margin-bottom: -15%;
    padding-bottom: 30%;
  }
}

.contact-hero-section {
  margin-bottom: -10rem;
  padding-bottom: 17rem;
}
@media (max-width: 1199px) {
  .contact-hero-section {
    padding-bottom: 15.5rem;
  }
}
@media (max-width: 991px) {
  .contact-hero-section {
    padding-bottom: 14rem;
  }
}

.pricing-content {
  padding-bottom: 20rem;
  margin-bottom: -16rem;
}
@media (max-width: 991px) {
  .pricing-content {
    padding-bottom: 19rem;
  }
}

@media (min-width: 992px) {
  .pricing-contact {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
}
@media (min-width: 1200px) {
  .pricing-contact {
    padding-bottom: 18rem;
  }
}

.pricing-switcher {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  width: 3rem;
  height: 1.5rem;
  margin-left: 4rem;
  border-radius: 1.5rem;
  background: #4f7373;
}
@media (max-width: 767px) {
  .pricing-switcher {
    margin-left: auto;
    margin-right: auto;
  }
}
.pricing-switcher::before, .pricing-switcher::after {
  position: absolute;
  color: #626a6a;
  font-weight: 500;
  font-size: 0.875rem;
}
.pricing-switcher::before {
  content: "Monthly";
  left: -4rem;
}
.pricing-switcher::after {
  content: "Yearly";
  right: -3.25rem;
}
.pricing-switcher .handle {
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: #fff;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.pricing-switcher.active .handle {
  left: 1.6875rem;
}
.pricing-switcher.active ~ .pricing-table .price-month {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-1.5rem);
}
.pricing-switcher.active ~ .pricing-table .price-year {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .pricing-table .equalHeight {
    height: auto !important;
  }
}
.pricing-table .prices {
  position: relative;
  height: 2.5rem;
}
.pricing-table .prices .price {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.pricing-table .prices .price .price-start {
  margin-right: 0.25rem;
  font-weight: 300;
  font-size: 0.875rem;
}
.pricing-table .prices .price .price-currency,
.pricing-table .prices .price .price-value {
  color: #262b2b;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 2.5rem;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pricing-table .prices .price .price-currency,
.pricing-table .prices .price .price-value {
    font-size: 2.25rem;
  }
}
@media (max-width: 359px) {
  .pricing-table .prices .price .price-currency,
.pricing-table .prices .price .price-value {
    font-size: 2.25rem;
  }
}
.pricing-table .prices .price .price-separator,
.pricing-table .prices .price .price-duration {
  font-weight: 300;
}
.pricing-table .prices .price .price-separator {
  margin: 0 0.25rem;
}
.pricing-table .prices .price .custom-price-value {
  font-weight: 600;
  font-size: 2rem;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .pricing-table .prices .price .custom-price-value {
    font-weight: 700;
    font-size: 1.5rem;
  }
}
.pricing-table .prices .price-month {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.pricing-table .prices .price-year {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-1.5rem);
}
.pricing-table .info {
  min-height: 1.5rem;
}

.feature-tooltip,
.sub-feature-tooltip {
  padding: 0;
  border: 0;
  background: transparent;
  color: #959d9d;
  font-size: 0.875em;
  line-height: calc(var(--bs-body-line-height) + 0.125);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
.feature-tooltip:hover, .feature-tooltip:focus, .feature-tooltip:active,
.sub-feature-tooltip:hover,
.sub-feature-tooltip:focus,
.sub-feature-tooltip:active {
  color: #495050;
}

.feature-anchor,
.sub-feature-anchor {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  color: currentColor;
  border-radius: var(--bs-rounded);
  text-decoration: none !important;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
.feature-anchor:hover,
.sub-feature-anchor:hover {
  background: #f3f7f7;
}
@media (hover: hover) {
  .feature-anchor:hover,
.sub-feature-anchor:hover {
    padding-top: 1.25rem;
    padding-bottom: 1.75rem;
  }
}

.feature-pretitle,
.sub-feature-pretitle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  letter-spacing: 0.075em;
}
.feature-pretitle::before,
.sub-feature-pretitle::before {
  content: "";
  width: 3rem;
  height: 1px;
  margin-right: 1.5rem;
  background-color: currentColor;
  border-radius: var(--bs-rounded);
}

.feature-list li,
.sub-feature-list li {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.feature-list li:last-child,
.sub-feature-list li:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.feature-list .feature-list-item,
.feature-list .sub-feature-list-item,
.sub-feature-list .feature-list-item,
.sub-feature-list .sub-feature-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.125rem;
  color: #262b2b;
  text-decoration: none !important;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
.feature-list .feature-list-item .bi,
.feature-list .sub-feature-list-item .bi,
.sub-feature-list .feature-list-item .bi,
.sub-feature-list .sub-feature-list-item .bi {
  font-size: 2rem;
  line-height: 1;
}
.feature-list .feature-list-item:hover,
.feature-list .sub-feature-list-item:hover,
.sub-feature-list .feature-list-item:hover,
.sub-feature-list .sub-feature-list-item:hover {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background: #f3f7f7;
}

.related-features .related-feature {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.related-features .related-feature:last-child {
  padding-bottom: 0;
}
.related-features .related-sub-feature {
  display: flex;
  flex-direction: column;
  color: #262b2b;
  text-decoration: none !important;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.related-features .related-sub-feature:hover, .related-features .related-sub-feature:active {
  color: #42c8c6;
}
.related-features .related-sub-feature:hover .related-sub-feature-title::after, .related-features .related-sub-feature:focus .related-sub-feature-title::after, .related-features .related-sub-feature:active .related-sub-feature-title::after {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(0);
}
.related-features .related-sub-feature .related-sub-feature-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1.25;
}
.related-features .related-sub-feature .related-sub-feature-title:not(:last-child) {
  margin-bottom: 0.25rem;
}
.related-features .related-sub-feature .related-sub-feature-title::after {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f138";
  margin-left: 0.5em;
  transform: translateX(-1.5rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
.related-features .related-sub-feature .related-sub-feature-desctiption {
  color: #626a6a;
  font-size: 0.875rem;
}

.newsletters-category-navigation li + li,
.forms-category-navigation li + li {
  margin-top: 0.125rem;
}
.newsletters-category-navigation a,
.forms-category-navigation a {
  display: block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #262b2b;
  font-size: 0.875rem;
  text-decoration: none !important;
  border-radius: var(--bs-rounded);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
@media (min-width: 992px) {
  .newsletters-category-navigation a,
.forms-category-navigation a {
    margin-left: -0.75rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
@media (max-width: 991px) {
  .newsletters-category-navigation a,
.forms-category-navigation a {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.newsletters-category-navigation a:hover, .newsletters-category-navigation a:active,
.forms-category-navigation a:hover,
.forms-category-navigation a:active {
  background-color: #f3f7f7;
}
@media (min-width: 992px) {
  .newsletters-category-navigation a:hover, .newsletters-category-navigation a:active,
.forms-category-navigation a:hover,
.forms-category-navigation a:active {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.newsletters-category-navigation a.active,
.forms-category-navigation a.active {
  background-color: #f3f7f7;
}
@media (min-width: 992px) {
  .newsletters-category-navigation a.active,
.forms-category-navigation a.active {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.newsletter-template::after,
.form-template::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  height: 50%;
  background: linear-gradient(to bottom, rgba(38, 43, 43, 0) 0%, #262b2b 100%);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.newsletter-template .newsletter-template-meta,
.newsletter-template .form-template-meta,
.form-template .newsletter-template-meta,
.form-template .form-template-meta {
  z-index: 1;
  display: flex;
  flex-direction: column;
  top: auto;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  width: auto;
  height: auto;
  color: #fff;
  transform: translateY(3rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
@media (max-width: 1199px) {
  .newsletter-template .newsletter-template-meta,
.newsletter-template .form-template-meta,
.form-template .newsletter-template-meta,
.form-template .form-template-meta {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }
}
.newsletter-template .newsletter-template-name,
.newsletter-template .form-template-name,
.form-template .newsletter-template-name,
.form-template .form-template-name {
  font-size: 0.875rem;
}
.newsletter-template .newsletter-template-category,
.newsletter-template .form-template-category,
.form-template .newsletter-template-category,
.form-template .form-template-category {
  font-size: 0.75rem;
  opacity: 0.6;
}
.newsletter-template:hover::after,
.form-template:hover::after {
  height: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.newsletter-template:hover .newsletter-template-meta,
.newsletter-template:hover .form-template-meta,
.form-template:hover .newsletter-template-meta,
.form-template:hover .form-template-meta {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.footer {
  margin-top: 6rem;
  padding: 6rem 0;
  color: var(--bs-gray-300);
  font-weight: 300;
}
@media (max-width: 991px) {
  .footer {
    margin-top: 4rem;
    padding: 4rem 0;
  }
}
@media (max-width: 575px) {
  .footer {
    padding-bottom: 2rem;
  }
}
.footer .footer-hr {
  margin-top: 4rem;
  margin-bottom: 4rem;
  background-color: rgba(255, 255, 255, 0.2);
}
.footer .footer-socials .footer-social-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1rem;
  color: inherit;
  font-size: 1.5rem;
  line-height: 1.5rem;
  text-decoration: none !important;
}
.footer .footer-socials .footer-social-link:hover, .footer .footer-socials .footer-social-link:active {
  color: #fff;
}
.footer .nav .nav-item + .nav-item {
  margin-top: 0.5rem;
}
.footer .nav .nav-item a {
  color: inherit;
}
.footer .nav .nav-item a:hover, .footer .nav .nav-item a:active {
  color: #fff;
}

.main-images-section img:not(.lead-image) {
  max-width: 30%;
}
.main-images-section .img-1 {
  top: 15%;
  right: -10%;
}
@media (max-width: 1199px) {
  .main-images-section .img-1 {
    top: 10%;
  }
}
.main-images-section .img-2 {
  top: 5%;
  left: -10%;
}
.main-images-section .img-3 {
  top: 25%;
  left: -12.5%;
}

@media (min-width: 1200px) {
  .home-why-point-section {
    margin-bottom: 15rem;
  }
}
@media (max-width: 1199px) {
  .home-why-point-section {
    position: relative;
    margin-bottom: -6rem;
  }
}
@media (max-width: 1199px) and (max-width: 991px) {
  .home-why-point-section {
    margin-bottom: -4rem;
  }
}
@media (max-width: 1199px) {
  .home-why-point-section::before {
    content: "";
    position: absolute;
    bottom: -6rem;
    right: 0;
    left: 0;
    width: auto;
    height: 12rem;
    background-color: rgb(var(--bs-dark-rgb));
    pointer-events: none;
  }
}
@media (max-width: 1199px) and (max-width: 991px) {
  .home-why-point-section::before {
    bottom: -4rem;
    height: 10rem;
  }
}
.home-why-point-section .home-why-point-image {
  width: 800px;
  max-width: none;
  margin-top: -25%;
}
@media (min-width: 1200px) {
  .home-why-point-section .home-why-point-content {
    padding: 2.5rem 3rem;
    background-color: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.035);
    box-shadow: none;
  }
}
@media (max-width: 1199px) {
  .home-why-point-section .home-why-point-content {
    padding: 3rem 4rem;
    background-color: #fff;
    box-shadow: 0 0.25rem 1.75rem rgba(4, 55, 56, 0.06);
  }
}
@media (max-width: 767px) {
  .home-why-point-section .home-why-point-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 575px) {
  .home-why-point-section .home-why-point-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.pricing-features-section .pricing-feature {
  padding: 3rem 2rem;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
@media (max-width: 575px) {
  .pricing-features-section .pricing-feature {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (hover: hover) {
  .pricing-features-section .pricing-feature {
    transform: translateY(0);
  }
  .pricing-features-section .pricing-feature:hover, .pricing-features-section .pricing-feature:active {
    transform: translateY(-0.5rem);
  }
}
.pricing-features-section .pricing-feature .pricing-feature-icon {
  flex: 0 0 auto;
}
.pricing-features-section .pricing-feature .pricing-feature-title {
  flex: 1 0 auto;
}
.pricing-features-section .pricing-feature .pricing-feature-content {
  flex-shrink: 0;
}
.pricing-features-section .pricing-feature-icon {
  max-width: 5rem;
  max-height: 5rem;
}
@media (max-width: 767px) {
  .pricing-features-section .pricing-feature-title br {
    display: none;
  }
}

.plan-comparison-section {
  margin-top: 6rem;
  padding-top: 3rem;
}
@media (max-width: 1199px) {
  .plan-comparison-section {
    margin-top: 3rem;
  }
}
@media (min-width: 1200px) {
  .plan-comparison-section .table-responsive {
    overflow-x: visible;
  }
}
@media (max-width: 1199px) {
  .plan-comparison-section .table-responsive {
    scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.1);
    scrollbar-width: thin;
  }
  .plan-comparison-section .table-responsive::-webkit-scrollbar {
    width: auto;
    height: 6px;
  }
  .plan-comparison-section .table-responsive::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--bs-rounded);
  }
  .plan-comparison-section .table-responsive::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--bs-rounded);
  }
}
.plan-comparison-section .table-wrapper {
  min-width: 1050px;
}
.plan-comparison-section .table-main + .table-main {
  margin-top: 3rem;
}
.plan-comparison-section .table {
  font-size: 0.875rem;
}
.plan-comparison-section .table tr:hover {
  background-color: #f3f7f7;
}
.plan-comparison-section .table tr:hover td {
  color: #262b2b;
}
.plan-comparison-section .table tr:hover td:first-of-type {
  padding-left: 1.5rem;
}
.plan-comparison-section .table tr:not(:only-of-type):first-of-type {
  border-top-width: 0;
}
.plan-comparison-section .table tr:not(:only-of-type):last-of-type {
  border-bottom-width: 0;
}
.plan-comparison-section .table td {
  height: 50px;
  vertical-align: middle;
}
.plan-comparison-section .table td:not(:first-of-type) {
  color: #262b2b;
}
.plan-comparison-section .table td:first-of-type {
  padding-left: 0;
  border-left-width: 0;
}
.plan-comparison-section .table td:last-of-type {
  padding-right: 0;
  border-right-width: 0;
}
.plan-comparison-section .table a {
  color: inherit;
}
.plan-comparison-section .table .checkmark {
  color: #6bbea3;
  font-size: 1.42857em;
  line-height: 1;
  vertical-align: middle;
}
.plan-comparison-section .table .xmark {
  color: #e2626b;
  font-size: 1.142em;
  line-height: 1;
  vertical-align: middle;
}

.pricing-item {
  position: relative;
}

.disabled-overlay {
  display: none;
  background: white;
}

#plan-free[disabled=true] .disabled-overlay {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
  opacity: 0.6;
}

#plan-essential[disabled=true] .disabled-overlay {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
  opacity: 0.6;
}

#plan-premium[disabled=true] .disabled-overlay {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
  opacity: 0.6;
}

/* TMP BG  */
.pricing-table .prices .price-month-bg {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.pricing-table .prices .price-year-bg {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-1.5rem);
}

.pricing-table .prices .price .price-currency-bg,
.pricing-table .prices .price .price-value-bg {
  color: #262b2b;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 2.5rem;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .pricing-table .prices .price .price-currency-bg,
.pricing-table .prices .price .price-value-bg {
    font-size: 2.25rem;
  }
}
@media (max-width: 359px) {
  .pricing-table .prices .price .price-currency-bg,
.pricing-table .prices .price .price-value-bg {
    font-size: 2.25rem;
  }
}
.pricing-switcher.active ~ .pricing-table .price-month-bg {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-1.5rem);
}

.pricing-switcher.active ~ .pricing-table .price-year-bg {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

/* TMP BG  end */
