@font-face {
  font-family: "avenir";
  src: url("../fonts/avenir-medium.eot");
  src: url("../fonts/avenir-medium.eot?#iefix") format("embedded-opentype"), url("../fonts/avenir-medium.woff2") format("woff2"), url("../fonts/avenir-medium.woff") format("woff"), url("../fonts/avenir-medium.ttf") format("truetype"), url("../fonts/avenir-medium.svg#avenir") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "avenir";
  src: url("avenir-light.eot");
  src: url("avenir-light.eot?#iefix") format("embedded-opentype"), url("avenir-light.woff2") format("woff2"), url("avenir-light.woff") format("woff"), url("avenir-light.ttf") format("truetype"), url("avenir-light.svg#avenirlight") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "avenir", sans-serif;
  font-weight: normal;
}

body::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #9BDEB2;
}
body::-webkit-scrollbar {
  width: 4px;
  border-radius: 10px;
  background-color: transparent;
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #155935;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
}
.loader .image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
}
.loader .image img {
  width: 100%;
  display: block;
}
.loader .image::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top: 3px solid #155935;
  animation: spin 0.5s infinite linear forwards;
}

img {
  display: block;
}

.flex {
  display: flex;
}
.flex.align-center {
  align-items: center;
}
.flex.align-top {
  align-items: flex-start;
}
.flex.justify-between {
  justify-content: space-between;
}
.flex.flex-column {
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 50px 0;
}

.sectionTitle {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: bold;
}
.sectionTitle.smaller {
  font-size: 24px;
  line-height: 30px !important;
}

.text {
  color: #000000;
  max-width: 70%;
}

.ctas {
  gap: 20px;
}
.ctas .btn {
  display: block;
  text-decoration: none;
  background-color: #155935;
  border-radius: 50px;
  padding: 10px 40px;
  color: white;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.ctas .btn:hover {
  background-color: #9BDEB2;
  color: #155935;
}
.ctas .secondary {
  color: #155935;
  background-color: rgba(101, 218, 241, 0.3);
}

.swal2-container .swal2-popup {
  color: #000000;
  width: 70vw;
  max-height: 90vh;
  overflow: auto;
}
.swal2-container .swal2-popup::-webkit-scrollbar-track, .swal2-container .swal2-popup::-webkit-scrollbar, .swal2-container .swal2-popup::-webkit-scrollbar-thumb {
  display: none;
}
.swal2-container .swal2-title {
  text-align: left;
  font-size: 36px;
  padding: 0;
  margin-bottom: 15px;
}
.swal2-container .swal2-html-container {
  font-size: 16px;
  text-align: left;l
  padding: 0;
}
.swal2-container .swal2-actions {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: white;
  margin: 0;
  padding: 20px 0;
}
.swal2-container .swal2-actions button.swal2-styled {
  margin: 0;
  display: block;
  text-decoration: none;
  background-color: #155935;
  border-radius: 50px;
  padding: 10px 40px;
  color: white;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
}
.swal2-container .swal2-actions button.swal2-styled:hover {
  background-color: #9BDEB2;
  color: #155935;
}

.mainBanner {
  position: relative;
  padding-top: 30px;
  background-color: #E8F3F5;
  overflow: hidden;
}
.mainBanner.subpage .content{
    padding-top:60px;
}
.mainBanner .background {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}
.mainBanner .background .bgimg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainBanner .background .bgimg.img1 {
  animation: panLeftRight 30s ease-in-out infinite;
}
.mainBanner .background .bgimg.img2 {
  animation: panRightLeft 40s ease-in-out infinite;
}
.mainBanner .background .bgimg.img4 {
  animation: panAndOpacity 50s ease-in-out infinite;
}
.mainBanner .nav {
  z-index: 2;
  position: relative;
  margin-bottom: 20px;
}
.mainBanner .nav .logo {
  width: 240px;
}
.mainBanner .nav .logo a {
  outline: none !important;
}
.mainBanner .nav .logo img {
  width: 100%;
}
.mainBanner .nav .tagline {
  color: #155935;
  font-size: 10px;
}
.mainBanner .nav .ctas {
  margin-right: 20px;
}
.mainBanner .nav .ctas a {
  font-size: 12px;
  padding: 4px 10px;
  background-color: #9BDEB2;
}
.mainBanner .nav .ctas a:hover {
  background-color: #E8F3F5;
}
.mainBanner .nav .language {
  position: relative;
  z-index: 2;
}
.mainBanner .nav .language::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #9BDEB2;
  border-radius: 10px 10px 0 0px;
  top: -6px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  transform-origin: 100% 100%;
  scale: 0;
  transition: all 0.2s ease-in-out;
}
.mainBanner .nav .language:hover a {
  color: #155935;
}
.mainBanner .nav .language:hover a::before, .mainBanner .nav .language:hover a::after {
  filter: none;
}
.mainBanner .nav .language:hover ul {
  scale: 1;
}
.mainBanner .nav .language:hover::before {
  scale: 1;
}
.mainBanner .nav .language > a {
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  padding-right: 10px;
  padding-left: 30px;
  transition: all 0.3s ease-in-out;
}
.mainBanner .nav .language > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/language.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease-in-out;
}
.mainBanner .nav .language > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 12px;
  height: 12px;
  background-image: url(../images/drop.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease-in-out;
}
.mainBanner .nav .language ul {
  position: absolute;
  top: 100%;
  right: -5px;
  background-color: #9BDEB2;
  padding: 5px;
  border-radius: 10px 0 10px 10px;
  list-style: none;
  width: 150px;
  transition: all 0.3s ease-in-out;
  scale: 0;
  transform-origin: 100% 0;
}
.mainBanner .nav .language ul li {
  margin-bottom: 2px;
}
.mainBanner .nav .language ul li:last-child {
  margin: 0;
}
.mainBanner .nav .language ul li a {
  text-decoration: none;
  color: #155935;
  display: block;
  background-color: transparent;
  padding: 5px 10px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mainBanner .nav .language ul li a img {
  height: 15px;
  width: 20px;
  display: block;
  border-radius: 3px;
}
.mainBanner .nav .language ul li a:hover {
  background-color: #155935;
  color: #FFFFFF;
}
.mainBanner .nav .language.green > a::before, .mainBanner .nav .language.green > a::after {
  filter: none;
}
.mainBanner .content {
  z-index: 1;
  position: relative;
}
.mainBanner .content .left {
  width: 50%;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.mainBanner .content .left .title {
  color: #000000;
  font-size: 40px;
  font-weight: bold;
  line-height: 60px;
}
.mainBanner .content .left .title span {
  font-weight: bold;
  color: #155935;
}
.mainBanner .content .right {
  width: 50%;
  padding-left: 50px;
}
.mainBanner .content .right img {
  max-width: 500px;
  width: 100%;
}

.teaser {
  padding-top: 100px;
}
.teaser .video {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.teaser .video::after {
    content:'';
    display:block;
    background-color: white;
    bottom:-2px;
  position: absolute;
  width: 100%;
  height: 4px;
}
.teaser .video video {
  width: 100%;
  display: block;
}
.teaser .video #unmuteBtn {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  background-image: url(../images/unmute.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.teaser .video #unmuteBtn:hover {
  background-size: 110px;
}

.features .header-content {
  text-align: center;
  margin-bottom: 40px;
}
.features .header-content .text {
  text-align: center;
  margin: 0 auto;
}
.features .flex > .flex {
  flex: 0 0 50%;
  width: 50%;
}
.features .feature-card {
  overflow: hidden;
  margin-bottom: 10px;
}
.features .feature-card .card-content {
  display: flex;
  align-items: center;
}
.features .feature-card .card-content .icon-container {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  background: #155935;
  background: linear-gradient(-90deg, rgb(62, 126, 92) 0%, rgb(21, 89, 53) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features .feature-card .card-content .icon-container .icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.features .feature-card .card-content .card-title {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  flex: 0 0 100%;
  width: calc(100% - 64px);
}
.features .wrap {
  flex-wrap: wrap;
  gap: 10px;
}
.features .wrap .feature-card {
  flex: 0 0 calc(50% - 5px);
  width: calc(50% - 5px);
  background-color: #E8F3F5;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 0;
}
.features .wrap .feature-card:last-child {
  flex: 0 0 100%;
}
.features .wrap .feature-card .card-content {
  flex-direction: column;
  align-items: flex-start;
}
.features .wrap .feature-card .percentage {
  color: #155935;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
}
.features .wrap .feature-card .percentage span {
    display: block;
    font-size: 40px;
    line-height: 40px;
}
.features .wrap .feature-card .card-title {
  flex: 0 0 100%;
  width: 100%;
}
.features .flex-column .feature-card .card-content {
  gap: 20px;
}
.features .flex-column .feature-card .card-content .card-title {
  flex: 0 0 calc(100% - 64px);
}

.howItWorks .header-content {
  text-align: center;
  margin-bottom: 40px;
}
.howItWorks .header-content .text {
  text-align: center;
  margin: 0 auto;
}
.howItWorks .flex {
  margin: 0 -20px;
}
.howItWorks .step-card {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 20px;
}
.howItWorks .step-card .step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background-color: #E8F3F5;
  border-radius: 16px;
}
.howItWorks .step-card .step-content .step-number {
  width: 50px;
  height: 50px;
  background-color: #155935;
  background: #155935;
  background: linear-gradient(-90deg, rgb(62, 126, 92) 0%, rgb(21, 89, 53) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 20px;
  color: #FFFFFF;
  font-weight: bold;
}
.howItWorks .step-card .step-content .step-title {
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}
.howItWorks .step-card .step-content .text {
  font-size: 16px;
  line-height: 20px;
  max-width: 100%;
}

.ceo .sectionTitle {
  padding-right: 30px;
}
.ceo h4 {
  font-size: 28px;
}
.ceo .flex {
  padding-right: 30px;
}
.ceo .flex .left,
.ceo .flex .right {
  margin: 0;
  padding: 0;
}
.ceo .flex .left h4,
.ceo .flex .right h4 {
  margin-bottom: 0;
}
.ceo .flex .left {
  padding-right: 30px;
}
.ceo .left {
  max-width: 220px;
  margin-right: 30px;
  margin-bottom: 30px;
  float: left;
}
.ceo .left .ceo-image {
  padding-top: 50px;
  border-radius: 20px;
  background-color: #E8F3F5;
  overflow: hidden;
}
.ceo .left .ceo-image img {
  display: block;
  width: 100%;
}
.ceo .left::after {
  content: "";
  display: block;
  clear: both;
}
.ceo .right {
  padding-right: 30px;
}
.ceo .right .text {
  max-width: 100%;
  margin-bottom: 30px;
}
.ceo .right .moreTxt {
  display: none;
}
.ceo .right .ctas .btn {
  display: inline-block;
}
.ceo .right .ceo-signature {
  font-style: italic;
  font-weight: bold;
  color: #000000;
}

.countdown {
  background: #E8F3F5;
  position: relative;
}
.countdown .header-content {
  /*flex: 0 0 50%;*/
}
.countdown .header-content .sectionTitle {
  margin-bottom: 0;
}
.countdown .header-content .text {
  text-align: left;
  max-width: 100%;
}
.countdown .countdown-container {
  z-index: 1;
  flex: 0 0 40%;
  justify-content: flex-end;
  gap: 5px;
}
.countdown .countdown-container .countdown-item {
  padding: 10px;
  flex: 0 0 calc(25% - 20px);
  width: calc(25% - 20px);
  background-color: rgba(101, 218, 241, 0.3);
  border-radius: 16px;
}
.countdown .countdown-container .countdown-item .countdown-number {
  font-weight: bold;
  font-size: 30px;
  color: #155935;
  text-transform: uppercase;
  text-align: center;
  line-height: 40px;
}
.countdown .countdown-container .countdown-item .countdown-label {
  font-size: 12px;
  color: #155935;
  text-align: center;
}
.countdown .countdown-container .countdown-separator {
  font-size: 24px;
  color: #155935;
  padding: 0 10px;
  display: none;
}

.banner {
  background: #3E7E5C;
  background: linear-gradient(313deg, rgb(62, 126, 92) 0, rgb(21, 89, 53) 54%);
  padding: 50px 0;
}
.banner .sectionTitle {
  line-height: 44px;
  color: #FFFFFF;
}
.banner .text {
  color: #FFFFFF;
  font-weight: 300;
  max-width: 100%;
  margin-bottom: 20px;
}
.banner .flex {
  margin: 0 -20px;
}
.banner .left,
.banner .right {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 20px;
}
.banner .disclaimer {
  color: #FFFFFF;
  position: relative;
  padding-left: 25px;
}
.banner .disclaimer::before {
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  left: 4px;
  width: 15px;
  height: 15px;
  background-image: url(../images/lock.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.banner .right .text {
  font-size: 14px;
  line-height: 20px;
}

form .inputEntity {
  margin-bottom: 10px;
  position:relative;
}
form .inputEntity::after {
  content:'';
  display:block;
  position: absolute;
  top:50%;
  right:10px;
  transform:translateY(-50%);
  width:20px;
  height:20px;
  background-image: url('../images/error.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity:0;
}
form .inputEntity.error::after {
    opacity:1;
}
form .inputEntity.error input {
  outline:3px solid #ff2626;
}
form .inputEntity input {
  width: 100%;
  border-radius: 5px;
  border: none;
  padding: 10px;
  outline: none;
  font-size: 16px;
}
form .inputEntity input::placeholder {
  color: #888888;
}
form .inputEntity:last-child {
  margin-bottom: 15px;
}
form .ctas .btn {
  display: inline-block;
  background-color: #9BDEB2;
  color: #155935;
}
form .ctas .btn:hover {
  background-color: #FFFFFF;
}

.socials {
  display: flex;
  margin: 0 -8px;
  flex-wrap: wrap;
}
.socials .social {
  padding: 0 8px;
}
.socials .social a {
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 16px;
  text-decoration: none;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.socials .social a:hover .label {
  color: #155935;
}
.socials .social a .icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 8px;
  position: relative;
}
.socials .social a .icon::before {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: brightness(0) invert(1);
}
.socials .social a .icon.wp {
  background-color: #25D366;
}
.socials .social a .icon.wp::before {
  background-image: url(../images/wp.svg);
}
.socials .social a .icon.fb {
  background-color: #3B82F6;
}
.socials .social a .icon.fb::before {
  background-image: url(../images/fb.svg);
}
.socials .social a .icon.ig {
  background: #D62976;
  background: linear-gradient(90deg, rgb(254, 218, 117) 0%, rgb(250, 126, 30) 25%, rgb(214, 41, 118) 50%, rgb(150, 47, 191) 75%, rgb(79, 91, 213) 100%);
}
.socials .social a .icon.ig::before {
  background-image: url(../images/ig.svg);
}
.socials .social a .icon.tm {
  background: #0088cc;
}
.socials .social a .icon.tm::before {
  background-image: url(../images/tm.svg);
}
.socials .social a .icon.x {
  background-color: black;
}
.socials .social a .icon.x::before {
  background-image: url(../images/x.svg);
}
.socials .social a .icon.ln {
  background-color: #2563EB;
}
.socials .social a .icon.ln::before {
  background-image: url(../images/ln.svg);
}
.socials .social a .icon.qa {
  background-color: #B92B27;
}
.socials .social a .icon.qa::before {
  background-image: url(../images/qa.svg);
}
.socials .social a .icon.rt {
  background-color: #FF4500;
}
.socials .social a .icon.rt::before {
  background-image: url(../images/rt.svg);
}
.socials .social a .icon.dd {
  background-color: #99AAb5;
}
.socials .social a .icon.dd::before {
  background-image: url(../images/dd.svg);
}
.socials .social a .icon.pt {
  background-color: #e90126;
}
.socials .social a .icon.pt::before {
  background-image: url(../images/pt.svg);
}
.socials .social a .label {
  width: calc(100% - 52px);
  flex: 0 0 calc(100% - 52px);
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.socials .disclaimer {
  flex: 0 0 100%;
  text-align: center;
}
.socials .disclaimer::before {
  display: none;
}
.socials .disclaimer .text {
  font-size: 14px;
  color: #FFFFFF;
  position: relative;
  padding-left: 25px;
  font-weight: 300;
  display: inline-block;
  margin-bottom: 0;
}
.socials .disclaimer .text::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 15px;
  height: 15px;
  background-image: url(../images/heart.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.faq .header-content {
  text-align: center;
  margin-bottom: 40px;
}
.faq .header-content .text {
  text-align: center;
  margin: 0 auto;
}
.faq .listingHolder {
  gap: 20px;
}
.faq .listingHolder .col {
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
}
.faq .listingHolder .listingItemDIV:last-child .listingItem {
  border: none;
}
.faq .listingHolder .listingItemDIV .listingItem {
  border-bottom: 1px solid #9BDEB2;
}
.faq .listingHolder .listingItemDIV .listingItem .expandToggle {
  padding: 10px 0;
  cursor: pointer;
}
.faq .listingHolder .listingItemDIV .listingItem .expandToggle .title {
  font-size: 20px;
  line-height: 24px;
}
.faq .listingHolder .listingItemDIV .listingItem .expandToggle .left {
  padding-top: 2px;
  margin-right: 20px;
}
.faq .listingHolder .listingItemDIV .listingItem .expandToggle img {
  width: 20px;
  height: 20px;
}
.faq .listingHolder .listingItemDIV .listingItem .expandToggle img.closeToggle {
  display: none;
}
.faq .listingHolder .listingItemDIV .listingItem .expandContent {
  display: none;
  padding-bottom: 10px;
  font-weight: 300;
}
.faq .listingHolder .listingItemDIV .listingItem.open .expandToggle img.openToggle {
  display: none;
}
.faq .listingHolder .listingItemDIV .listingItem.open .expandToggle img.closeToggle {
  display: block;
}
.faq .listingHolder .listingItemDIV ul {
  list-style: none;
  padding-left: 20px;
}
.faq .listingHolder .listingItemDIV ul li {
  /*font-weight: 300;*/
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}
.faq .listingHolder .listingItemDIV ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  /*transform: translateY(-50%);*/
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #155935;
}
.faq .listingHolder .listingItemDIV ul li:last-child {
  margin-bottom: 0;
}

.ceo ul {
  list-style: none;
  /*padding-left: 20px;*/
}
.ceo ul li {
  /*font-weight: 300;*/
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}
.ceo ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #155935;
}
.ceo ul li:last-child {
  margin-bottom: 0;
}

.generalContent h6 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.generalContent p.text {
  max-width: 100%;
  margin-bottom: 50px;
}
.generalContent p.text.nomargin {
  margin-bottom: 0;
}
.generalContent a {
  color: #155935;
}
.generalContent b {
  font-weight: bold;
}
.generalContent ul {
  list-style: none;
  padding-left: 20px;
}
.generalContent ul li {
  /*font-weight: 300;*/
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}
.generalContent ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #155935;
}
.generalContent ul li:last-child {
  margin-bottom: 0;
}
.generalContent table {
  width: 100%;
  table-layout: fixed;
}

footer {
  padding: 20px 0;
  text-align: center;
}
footer .flex > div {
  flex: 1;
}
footer img {
  width: 100px;
  height: auto;
  display: block;
}
footer .copyright {
  font-size: 14px;
}
footer .copyright .copyrightSymbol {
  font-family: Arial, Helvetica, sans-serif;
}
footer .links {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
footer .links a {
  text-decoration: none;
  color: #155935;
  font-size: 14px;
}
footer .links a:hover {
  text-decoration: underline;
}

mark {
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  position: relative;
  background-color: transparent;
  display: inline-block;
}
mark.intitle::before {
  transform: translate(-50%, -50%) rotateZ(-10deg);
  height: 40px;
}
mark::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(-3deg);
  width: calc(100% + 5px);
  height: 20px;
  background-color: #9BDEB2;
  z-index: -1;
  border-radius: 5px;
}

.italianContent {
  display: none;
}

@keyframes panLeftRight {
  0% {
    transform: translateX(-50px);
  }
  45% {
    transform: translateX(350px);
  }
  55% {
    transform: translateX(350px);
  }
  100% {
    transform: translateX(-50px);
  }
}
@keyframes panRightLeft {
  0% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(-350px);
  }
  55% {
    transform: translateX(-350px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes panAndOpacity {
  0% {
    transform: translateX(0px);
    opacity: 1;
  }
  45% {
    transform: translateX(200px);
    opacity: 0.2;
  }
  55% {
    transform: translateX(200px);
    opacity: 0.2;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: translateX(-50%) rotateZ(0deg);
  }
  100% {
    transform: translateX(-50%) rotateZ(360deg);
  }
}
/*@media screen and (min-width: 1300px) {*/
    /*.mainBanner.home{height: 100vh;}*/
    .mainBanner.home .container{height: 100%;}
    .mainBanner.home .container .content {
        /*height: calc(100% - 75px);*/
        align-items: flex-end; 
    }
/*}*/
@media screen and (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 50px;
  }
  .mainBanner {
    padding-top: 30px;
  }
  /*.mainBanner .content .left .title {*/
  /*  font-size: 50px;*/
  /*  line-height: 65px;*/
  /*}*/
  .mainBanner .content .left .text {
    max-width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .mainBanner .content .left .title {
    font-size: 32px;
    line-height: 44px;
  }
  .mainBanner .content .right img {
    max-width: 350px;
  }
  .socials .social a {
    padding: 5px;
  }
  .ctas .btn {
    padding: 6px 20px;
    font-size: 14px;
  }
  .loader .image {
    width: 50px;
  }
  .loader .image::after {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #155935;
  }
  .faq .header-content {
    text-align: left;
    margin-bottom: 20px;
  }
  .faq .listingHolder .listingItemDIV .listingItem .expandToggle .title {
    font-size: 18px;
    line-height: 22px;
  }
  .faq .listingHolder .listingItemDIV .listingItem .expandToggle .left {
    padding-top: 2px;
    margin-right: 10px;
  }
  .faq .listingHolder .listingItemDIV .listingItem .expandToggle img {
    width: 15px;
    height: 15px;
  }
  .faq .listingHolder .listingItemDIV .listingItem .expandContent {
    display: none;
    padding-bottom: 10px;
    font-weight: 300;
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  .mainBanner {
    height: auto;
    padding-top: 20px;
  }
  .mainBanner .nav .logo {
    width: 240px;
  }
  
  .mainBanner .content .left {
    gap: 20px;
    /*padding-top: 40px;*/
    margin-bottom: 60px;
  }
  .mainBanner .content .left .title {
    font-size: 33px;
    line-height: 48px;
  }
  .mainBanner .content .right img {
    max-width: 275px;
  }
  .teaser .video {
    width: 100%;
    height: 250px;
  }
  .section {
    padding: 30px 0;
  }
  .text {
    max-width: 100%;
  }
  .sectionTitle {
    font-size: 36px;
    margin-bottom: 0;
  }
  .features .flex .flex {
    flex-direction: column;
  }
  .features .flex .flex.wrap {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .features .flex .flex.wrap .feature-card {
    width: 100%;
    flex: 0 0 auto;
  }
  .features .flex .flex.wrap .feature-card .percentage {
    height: auto !important;
  }
  .features .flex .header-content {
    text-align: left;
    margin-bottom: 30px;
  }
  .features .flex .header-content .text {
    text-align: left;
  }
  .features .flex .feature-card .card-content .icon-container {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
  }
  .features .flex .feature-card .card-content .card-title {
    flex: 0 0 calc(100% - 70px);
    width: calc(100% - 70px);
  }
  .howItWorks .header-content {
    text-align: left;
    margin-bottom: 30px;
  }
  .howItWorks .header-content .text {
    text-align: left;
  }
  .howItWorks .flex {
    flex-direction: column;
    gap: 20px;
  }
  .howItWorks .step-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .howItWorks .step-card .step-content {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
  }
  .howItWorks .step-card .step-content .step-number {
    flex: 0 0 50px;
    margin-bottom: 0;
  }
  .howItWorks .step-card .step-content .step-title {
    flex: 0 0 calc(100% - 50px);
    text-align: left;
    padding-left: 20px;
    margin-bottom: 0;
  }
  .howItWorks .step-card .step-content .text {
    flex: 0 0 100%;
    padding-left: 70px;
    text-align: left;
    opacity: 0.6;
  }
  .ceo .header-content {
    text-align: left;
    margin-bottom: 30px;
  }
  .countdown .flex {
    flex-direction: column;
  }
  .countdown .header-content {
    margin-bottom: 30px;
  }
  .countdown .countdown-container {
    flex: 0 0 100%;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
  }
  .countdown .countdown-container .countdown-item {
    padding: 10px;
    flex: 1;
    width: auto;
    min-width: 80px;
  }
  .banner {
    padding: 30px 0;
  }
  .banner .flex {
    flex-direction: column;
  }
  .banner .left,
  .banner .right {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  .banner .left {
    margin-bottom: 30px;
  }
  .banner .sectionTitle {
    margin-bottom: 20px;
  }
  footer .flex {
    flex-direction: column;
    align-items: center;
  }
  footer .flex img {
    margin-bottom: 50px;
    width: 120px;
  }
  .faq .listingHolder {
    flex-direction: column;
    gap: 0;
  }
  .faq .listingHolder .col {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .faq .listingHolder .col:first-child {
    border-bottom: 1px solid #9BDEB2;
  }
  .ceo .flex {
    flex-direction: column;
  }
  .ceo .flex .left,
  .ceo .flex .right {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .ceo .left {
    margin-right: 0;
    float: none;
  }
  .ceo .right {
    padding-right: 0;
  }
}
@media screen and (max-width: 720px) {
  .mainBanner {
    padding-top: 30px;
  }
  .mainBanner .nav .ctas,
  .mainBanner .nav .language {
    display: none;
  }
  .mainBanner .background .bgimg.img1, .mainBanner .background .bgimg.img2, .mainBanner .background .bgimg.img3, .mainBanner .background .bgimg.img4 {
    animation: none;
  }
  .mainBanner .content {
    margin-bottom: 0px;
    flex-direction: column;
  }
  .mainBanner .content .left {
    margin-bottom: 30px;
    width: 100%;
    /*padding-top: 30px;*/
  }
  .mainBanner .content .left .title {
    text-align: center;
  }
  .mainBanner .content .left .text {
    text-align: center;
  }
  .mainBanner .content .left .ctas {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
  .mainBanner .content .left .ctas a {
    text-align: center;
  }
  .mainBanner .content .right {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
  .mainBanner .content .right img {
    margin: 0 auto;
    max-width: 200px;
  }
  .sectionTitle {
    font-size: 24px;
  }
  .features .container > .flex {
    flex-direction: column;
  }
  .features .container > .flex .flex {
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
  .features .feature-card .card-content .card-title {
    font-size: 16px;
  }
  .ceo .flex {
    flex-direction: column;
  }
  .ceo .left {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .ceo .left .ceo-image {
    padding: 0;
    margin-bottom: 30px;
  }
  .ceo .right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .banner .disclaimer::before {
    top: 5px;
    transform: none;
  }
  form .ctas .btn {
    width: 100%;
    text-align: center;
  }
  .countdown .flex > div {
    width: 100%;
  }
  .countdown .ctas .btn {
    width: 100%;
    text-align: center;
  }
  .countdown .countdown-container {
    gap: 5px;
  }
  .countdown .countdown-container .countdown-item {
    padding: 10px;
    min-width: 0;
    flex: 0 0 25%;
  }
  .countdown .countdown-container .countdown-item .countdown-number {
    font-size: 20px;
    line-height: 24px;
  }
  .mainBanner .content .left .title {
    font-size: 28px;
    line-height: 40px;
  }
  .ceo .right .text {
    font-size: 14px;
    font-weight: 300;
  }
  .mainBanner .nav {
    justify-content: center;
  }
  .mainBanner .nav .flex.align-center {
    flex-direction: column;
  }
}
.successMessage{color:white;}
/*# sourceMappingURL=styles.css.map */
