body {
  font-family: "Open Sans", sans-serif;
  background-color: #121212 !important;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

p {
  margin: auto;
  margin-block-start: auto;
  margin-block-end: auto;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  margin-block-start: auto;
  margin-block-end: 10px;
}

h1 {
  font-size: 36px;
  font-weight: 700;
}

h2 {
  font-size: 42px;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  font-size: 16px;
  font-weight: 400;
}

a {
  text-decoration-line: none;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: none !important;
}

a.site-button:hover,
a.site-button:focus,
a.site-button:active,
a.site-button:visited {
  text-decoration: none;
  text-decoration-line: none;
  color: #DEDEDE;
}

textarea {

  background: radial-gradient(28.12% 78.97% at 50% 50%, rgba(5, 123, 97, 0.6) 50%, rgba(4, 106, 83, 0.6) 100%), linear-gradient(270deg, rgb(4, 106, 83) 29%, rgb(4, 106, 83) 70.5%) !important;
  border: 1px solid !important;
  border-image-source: conic-gradient(from 90deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg) !important;

}

.text-tiny,
.text-tiny * {
  font-size: 14px;
}

.text-small,
.text-small * {
  font-size: 16px;
}

.text-s-medium,
.text-s-medium * {
  font-size: 18px;
}

.text-medium,
.text-medium * {
  font-size: 20px;
}

.text-large,
.text-large * {
  font-size: 24px;
}

.text-x-large,
.text-x-large * {
  font-size: 28px;
}

.text-xx-large,
.text-xx-large * {
  font-size: 36px;
}

.text-xxx-large,
.text-xxx-large * {
  font-size: 40px;
}

.text-huge,
.text-huge * {
  font-size: 42px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.full-height {
  height: 100vh;
}

.justify-center-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.justify-center-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.justify-start-center {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
}

.justify-start-space-between {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}

.justify-center-top {
  display: flex;
  justify-content: center;
  align-items: start;
}

.flex-space-between {
  display: flex;
  justify-content: space-between;
}

.text-green {
  color: #068C6E;
}

.overflow-hidden {
  overflow: hidden;
}

body.overflow-hidden .header-visible {
  background: transparent;
  border: none;
}

.invisible {
  opacity: 0 !important;
}

.hide {
  display: none;
}

.section-padding {
  padding: 50px 0;
}

@media screen and (min-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }
}

.section-padding-small {
  padding: 20px 0;
}

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

.post,
.page {
  margin: 0;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  height: 100%;
  z-index: 1;
}

@media screen and (min-width: 1440px) {
  .container {
    padding: 0 50px;
  }
}

.container .content {
  padding: 0 50px;
}

.site-button {
  font-size: 14px;
  font-weight: 700;
  padding: 0px 50px 0 20px;
  height: 45px;
  border-radius: 5px;
  text-align: center;
  color: #DEDEDE;
  text-transform: uppercase;
  background-color: #046A53;
  background: radial-gradient(28.12% 78.97% at 50% 50%, #057B61 50%, #046A53 100%), linear-gradient(270deg, rgba(4, 106, 83, 0.2) 29%, rgba(4, 106, 83, 0.2) 70.5%);
  border: none;
  box-shadow: 0px 0px 2.5px 1px #046A53;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 150px;
  --angle: 36.47deg;
}

.site-button::after {
  content: "";
  display: block;
  width: 1px;
  height: 25px;
  margin: 0 10px;
  background: #DEDEDE;
  right: 25px;
  position: absolute;
}

.site-button::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Stretch to cover */
  padding: 1px;
  /* Border thickness */
  /* Set initial variable */
  background: conic-gradient(from 36.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
  border-radius: 5px;
  /* If rounded borders are needed */
  pointer-events: none;
}

.site-button .arrow {
  position: absolute;
  right: 7px;
}

.site-button:hover::before {
  animation: spinBGColor 1.5s ease-in-out infinite;
  /* Start animation */
}

.site-button.green {
  margin-top: 20px;
  color: #01E1AE;
}

.site-button.green::after {
  background-color: #01E1AE;
}

.site-button.green .arrow span {
  background-image: url("../assets/images/arrow-button-green.png");
  width: 23px;
  height: 23px;
  display: block;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}

.call-to-action {
  text-transform: uppercase;
  font-size: 18px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  left: 0;
  transition: all 0.3s ease;
}

.call-to-action a {
  color: #DEDEDE !important;
  text-decoration: none;
  font-weight: bold;
  display: contents;
}

.call-to-action a::after {
  content: "";
  display: block;
  width: 1px;
  height: 25px;
  margin: 0 10px;
  background: #DEDEDE;
}

.call-to-action::before {
  content: "";
  width: calc(100% - 50px);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  /* Adjust the space between text and line */
  height: 2px;
  /* Thickness of the gradient line */
  border-radius: 2px;
  /* Optional for rounded edges */
  background: linear-gradient(80.45deg, #08D0A3 0%, #046A53 25%, #046A53 50%, #046A53 75%, #08D0A3 100%);
  pointer-events: none;
  background-size: 250% 2px;
  /* Expands gradient for smooth animation */
  background-position: 0% 50%;
  /* Start from right */
}

.call-to-action:hover::before {
  animation: moveGradient 2s ease-in infinite;
  /* Loop animation */
}

.call-to-action:not([data-aos=fade-up]):hover {
  left: 15px;
}

.call-to-action-arrow {
  font-size: 12px;
  width: 35px;
  height: 35px;
  border-radius: 9px;
  background: radial-gradient(28.12% 78.97% at 50% 50%, rgba(5, 123, 97, 0.8) 50%, rgba(4, 106, 83, 0.8) 100%), linear-gradient(270deg, rgba(4, 106, 83, 0.2) 29%, rgba(4, 106, 83, 0.2) 70.5%);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.call-to-action-arrow span {
  background-image: url("../assets/images/arrow-forward.png");
  height: 30px;
  width: 30px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: 0px 0px 5px 2px #046A53;
}

.call-to-action-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Stretch to cover */
  padding: 1px;
  /* Border thickness */
  background: conic-gradient(from 41.33deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
  border-radius: 5px;
  /* If rounded borders are needed */
}

.arrow {
  width: 25px;
  height: 25px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.arrow span {
  background-image: url("../assets/images/arrow-forward.png");
  width: 23px;
  height: 23px;
  display: block;
  background-size: contain;
}

.transparent-text {
  text-align: center;
  font-size: 100px;
  line-height: 100px;
  font-weight: bold;
  color: transparent;
  /* Makes text fill transparent */
  -webkit-text-stroke: 1px white;
  /* White border (for Chrome, Safari) */
  word-wrap: break-word;
  text-align: left;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .transparent-text {
    font-size: 155px;
    line-height: 120px;
    text-align: center;
  }
}

.section-header {
  padding: 0 20px;
}

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

.big-text-section h1,
.big-text-section h1>p {
  text-align: left;
  font-size: 60px;
  line-height: 80px;
  font-weight: normal;
}

@media screen and (min-width: 768px) {

  .big-text-section h1,
  .big-text-section h1>p {
    font-size: 120px;
    line-height: 140px;
  }
}

.gradient-text {
  margin: 0 0 20px 0;
  background: linear-gradient(45deg, #046A53, #068C6E, #00372b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mask-image: linear-gradient(45deg, #046A53, #068C6E, #00372b);
  -webkit-mask-image: linear-gradient(45deg, #046A53, #068C6E, #00372b);
}

.bg-gradient-white {
  background-color: #DEDEDE;
  background: linear-gradient(-35deg, #ffffff 0%, #DEDEDE 22%, #DEDEDE 39%, #E0E0E0 65%, #ffffff 100%);
}

.bg-gradient-green {
  background-color: #046A53;
  background: linear-gradient(-45deg, #046A53 0%, #068C6E 15%, #046A53 32%, #068C6E 53%, #046A53 71%, #068C6E 85%);
}

.bg-gradient-green-testimonial {
  background-color: #046A53;
  background: linear-gradient(108.12deg, rgb(0, 40, 31) 0.49%, rgb(1, 45, 35) 8.45%, rgb(2, 52, 40) 31.84%, rgb(4, 66, 52) 48.75%, rgb(2, 53, 42) 52.73%, rgb(0, 42, 32) 73.63%, rgb(0, 42, 32) 81.09%, rgb(4, 66, 52) 87.06%, rgb(0, 42, 32) 100%);
}

.bg-gradient-white-green {
  background-color: #DEDEDE;
  background: linear-gradient(-35deg, #ffffff 6%, #B7C6C3 23%, #ffffff 43%, #B7C6C3 64%, #ffffff 75%, #B7C6C3 87%);
}

header {
  height: 70px;
  padding: 10px 0;
  width: 100%;
  position: fixed;
  z-index: 100;
  transition: all 0.5s ease-in-out;
}

header.hidden {
  transform: translateY(-100%);
  /* Moves the header up to hide it */
}

@media screen and (min-width: 768px) {
  header {
    height: 100px;
  }
}

header.header-visible {
  background-color: rgba(0, 0, 0, 0.4196078431);
  border-bottom: 1px solid rgba(51, 51, 51, 0.7882352941);
}

header .site-branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

header .site-logo {
  max-height: 50px;
  max-width: 100px;
}

@media screen and (min-width: 768px) {
  header .site-logo {
    max-height: 79px;
    max-width: 158px;
  }
}

header .site-header-right {
  width: fit-content;
  display: flex;
  align-items: center;
}

header .site-header-right .burger {
  margin-right: 20px;
}

header .site-header-right .sign-in {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

/* From Uiverse.io by Cevorob */
.burger {
  position: relative;
  width: 30px;
  height: 25px;
  background: transparent;
  cursor: pointer;
  display: block;
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

.burger input:checked~span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input:checked~span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input:checked~span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 22px;
  left: 5px;
}

.main-menu {
  transform: translateY(-100%);
  visibility: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #00372b;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
  color: #DEDEDE;
  transition: transform 0.7s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s;
  opacity: 0;
}

.main-menu.active {
  transform: translateY(0);
  visibility: 1;
  opacity: 1;
}

.main-menu .menu-inner {
  display: column;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .main-menu .menu-inner {
    width: 60%;
    flex-direction: row;
    padding: 0 20px;
  }
}

.main-menu .menu-inner .menu-left {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding-bottom: 12%;
}

@media screen and (min-width: 768px) {
  .main-menu .menu-inner .menu-left {
    width: 60%;
    justify-content: end;
  }
}

.main-menu .menu-inner .menu-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.main-menu .menu-inner .menu-left ul li a {
  margin: 30px 0 0 0;
  font-size: 40px;
  font-family: "Raleway", sans-serif;
  text-decoration: none;
  color: #DEDEDE;
  transition: color 0.3s ease-in-out;
  font-weight: 300;
  justify-content: start;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .main-menu .menu-inner .menu-left ul li a {
    font-size: 48px;
  }
}

.main-menu .menu-inner .menu-left ul li a::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 15px;
  background-image: url("../assets/images/arrow-right-green.png");
  /* Replace with your image */
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 5px;
  margin-left: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.main-menu .menu-inner .menu-left ul li a:hover {
  color: #046A53;
  font-weight: 500;
}

.main-menu .menu-inner .menu-left ul li a:hover::after {
  opacity: 1;
}

.main-menu .menu-inner .menu-left ul li.current-menu-item a {
  color: #046A53;
  font-weight: 500;
}

.main-menu .menu-inner .menu-left ul li.current-menu-item a::after {
  opacity: 1;
}

.main-menu .menu-inner .menu-left .site-logo {
  margin-top: 30px;
  width: 120px;
  position: fixed;
  bottom: 20px;
}

.main-menu .menu-inner .menu-right {
  display: none;
  width: 40%;
  height: 100%;
  justify-content: end;
  flex-direction: column;
  position: relative;
  padding-left: 50px;
  padding-bottom: 12%;
}

@media screen and (min-width: 768px) {
  .main-menu .menu-inner .menu-right {
    display: flex;
  }
}

.main-menu .menu-inner .menu-right .copy-right {
  position: fixed;
  bottom: 20px;
  font-size: 14px;
}

.main-menu .menu-inner .menu-right::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(222, 222, 222, 0.3490196078);
}

.main-menu .menu-inner .menu-right .menu-links-list {
  margin-top: 30px;
  font-size: 20px;
}

.main-menu .menu-inner .menu-right .menu-links-list h3 {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  margin-top: 10px;
  font-weight: normal;
  color: #046A53;
}

.main-menu .menu-inner .menu-right .menu-links-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.main-menu .menu-inner .menu-right .menu-links-list ul li {
  margin: 5px 0;
}

.main-menu .menu-inner .menu-right .menu-links-list ul li a {
  font-family: "Raleway", sans-serif;
  text-decoration: none;
  color: #DEDEDE;
  transition: color 0.3s ease-in-out;
}

.main-menu .menu-inner .menu-right .menu-links-list ul li a:hover {
  color: #046A53;
}

.main-menu .menu-inner .menu-right .burger {
  position: absolute;
  top: 0;
  right: 0;
}

.main-menu .current-menu-item a {
  color: #068C6E;
}

.menu-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0.1;
  background-size: cover;
  background-position: center;
}

#page select,
#page input[type=date],
#page input[type=text],
#page input[type=email],
#page input[type=password],
#page input[type=text]:focus,
#page input[type=email]:focus,
#page input[type=password]:focus,
#page input[type=file],
#page textarea {
  font-size: 14px;
  height: 45px;
  padding: 10px 15px;
  color: #DEDEDE;
  margin-right: 10px;
  border-radius: 5px;
  border: none;
  background: transparent;
}

#page select::placeholder,
#page input[type=date]::placeholder,
#page input[type=text]::placeholder,
#page input[type=email]::placeholder,
#page input[type=password]::placeholder,
#page input[type=text]:focus::placeholder,
#page input[type=email]:focus::placeholder,
#page input[type=password]:focus::placeholder,
#page input[type=file]::placeholder,
#page textarea::placeholder {
  color: #DEDEDE;
}

#page select {
  appearance: none;
}

#page textarea {
  height: 100px;
}

/* Keyframes for background movement */
@keyframes moveGradient {
  0% {
    background-position: 200% 150%;
  }

  33% {
    background-position: 150% 100%;
  }

  66% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 50% 0%;
  }
}

@keyframes zoomBackground {
  0% {
    background-size: 115%;
  }

  100% {
    background-size: 102%;
  }
}

@keyframes zoomImage {
  0% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes spinBGColor {
  0% {
    background: conic-gradient(from 36.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  5% {
    background: conic-gradient(from 54.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  10% {
    background: conic-gradient(from 72.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  15% {
    background: conic-gradient(from 90.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  20% {
    background: conic-gradient(from 108.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  25% {
    background: conic-gradient(from 126.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  30% {
    background: conic-gradient(from 144.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  35% {
    background: conic-gradient(from 162.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  40% {
    background: conic-gradient(from 180.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  45% {
    background: conic-gradient(from 198.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  50% {
    background: conic-gradient(from 216.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  55% {
    background: conic-gradient(from 234.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  60% {
    background: conic-gradient(from 252.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  65% {
    background: conic-gradient(from 270.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  70% {
    background: conic-gradient(from 288.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  75% {
    background: conic-gradient(from 306.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  80% {
    background: conic-gradient(from 324.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  85% {
    background: conic-gradient(from 342.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  90% {
    background: conic-gradient(from 360.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  95% {
    background: conic-gradient(from 378.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }

  100% {
    background: conic-gradient(from 396.47deg at 50% 50%, #01E1AE 0deg, #046A53 39.6deg, #01E1AE 360deg);
  }
}

[data-scroll] {
  will-change: transform;
  /* Optimizes animations */
}

.wc_payment_methods {
  background-color: #F1F5F5;
  border-radius: 6px;
  color: #000000;
  margin-bottom: 15px !important;
  list-style: none;
  line-height: 30px;
  margin: 0;
  padding: 0;
}

/*# sourceMappingURL=main.css.map */